aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/control/concurrency/thread.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/control/concurrency/thread.lux')
-rw-r--r--stdlib/source/library/lux/control/concurrency/thread.lux7
1 files changed, 4 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/control/concurrency/thread.lux b/stdlib/source/library/lux/control/concurrency/thread.lux
index 408b854f8..957a052d1 100644
--- a/stdlib/source/library/lux/control/concurrency/thread.lux
+++ b/stdlib/source/library/lux/control/concurrency/thread.lux
@@ -2,6 +2,7 @@
[library
[lux (.except)
["[0]" ffi]
+ ["[0]" debug]
[abstract
["[0]" monad (.only do)]]
[control
@@ -113,9 +114,9 @@
(case (try (io.run! action))
{try.#Failure error}
(exec
- ("lux io log" (all "lux text concat"
- "ERROR DURING THREAD EXECUTION:" text.new_line
- error))
+ (debug.log! (all "lux text concat"
+ "ERROR DURING THREAD EXECUTION:" text.new_line
+ error))
[])
{try.#Success _}