From 498993981711efd574ea3e965c29b931fb4ad64c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ritzl?= Date: Thu, 28 May 2020 08:20:43 +0200 Subject: [PATCH] Always print errors. Do not rely on monarch debugging --- monarch/monarch.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monarch/monarch.lua b/monarch/monarch.lua index 0964857..c80d65c 100644 --- a/monarch/monarch.lua +++ b/monarch/monarch.lua @@ -93,7 +93,7 @@ end local queue = {} local function queue_error(message) - log(message) + print(message) log("queue() error - clearing queue") while next(queue) do table.remove(queue)