diff options
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) |