online multiplayer chess game (note server currently down)
Diffstat (limited to 'Log.gd')
-rw-r--r--Log.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/Log.gd b/Log.gd
index 912ff23..8090a6c 100644
--- a/Log.gd
+++ b/Log.gd
@@ -13,7 +13,7 @@ static func debug(information) -> void: # logs the input string on debug builds
static func err(information) -> void: # logs the input string to stderr
- printerr("(%s) [E] %s" % [now(), to_str(information)])
+ push_error("(%s) [E] %s" % [now(), to_str(information)])
static func to_str(args) -> String: