aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-01-08 19:23:52 -0400
committerEduardo Julian2021-01-08 19:23:52 -0400
commit1ce30d50abaa330ab2125b110e245de6deda27c7 (patch)
tree6b40e5d5f1282d33dbd31e64b1753fd0c31be79b /stdlib/source/program/aedifex.lux
parent75102dcfa7c2c0afd32cb5bf5ac012df2db6a7a1 (diff)
Moved "log!" function under "lux/debug".
Diffstat (limited to 'stdlib/source/program/aedifex.lux')
-rw-r--r--stdlib/source/program/aedifex.lux3
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)