diff options
author | Eduardo Julian | 2021-01-08 19:23:52 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-01-08 19:23:52 -0400 |
commit | 1ce30d50abaa330ab2125b110e245de6deda27c7 (patch) | |
tree | 6b40e5d5f1282d33dbd31e64b1753fd0c31be79b /stdlib/source/program | |
parent | 75102dcfa7c2c0afd32cb5bf5ac012df2db6a7a1 (diff) |
Moved "log!" function under "lux/debug".
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/program/aedifex.lux | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/source/program/aedifex.lux b/stdlib/source/program/aedifex.lux index 051bba9b1..4b812bef4 100644 --- a/stdlib/source/program/aedifex.lux +++ b/stdlib/source/program/aedifex.lux @@ -1,6 +1,7 @@ (.module: [lux (#- Name) [program (#+ program:)] + ["." debug] [abstract [monad (#+ do)]] [control @@ -93,7 +94,7 @@ (def: (fail! error) (-> Text (IO Any)) (exec - (log! error) + (debug.log! error) (\ program.default exit shell.error))) (def: (command action) |