diff options
author | Eduardo Julian | 2022-07-10 18:00:23 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-07-10 18:00:23 -0400 |
commit | 1bbc4251230cee13d46df7b706859e834778aee0 (patch) | |
tree | 6e9aa1b7e079ffd01041c510ac201f16a57842e9 /stdlib/source/program | |
parent | 7db42ab1b9d3c764772ca63c74bf44bb2b8b8325 (diff) |
Removed the need for ,! unquoting.
Diffstat (limited to 'stdlib/source/program')
-rw-r--r-- | stdlib/source/program/compositor.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stdlib/source/program/compositor.lux b/stdlib/source/program/compositor.lux index 3f3009b67..108325fd7 100644 --- a/stdlib/source/program/compositor.lux +++ b/stdlib/source/program/compositor.lux @@ -89,10 +89,10 @@ (do async.monad [.let [start (io.run! instant.now)] output process - .let [_ ("lux io log" (|> (io.run! instant.now) - (instant.span start) - %.duration - (format "Duration: ")))]] + .let [_ (debug.log! (|> (io.run! instant.now) + (instant.span start) + %.duration + (format "Duration: ")))]] (in output))) (def (package! fs host_dependencies [packager package] archive context) |