online multiplayer chess game (note server currently down)
Diffstat (limited to 'Log.gd')
-rw-r--r--Log.gd4
1 files changed, 3 insertions, 1 deletions
diff --git a/Log.gd b/Log.gd
index 8090a6c..6a155b8 100644
--- a/Log.gd
+++ b/Log.gd
@@ -25,7 +25,9 @@ static func net(args) -> void:
static func file(path: String, args) -> void:
- SaveLoad.append_string(path, "(%s)%s" % [now(), to_str(args)])
+ var arg_string := to_str(args)
+ debug(arg_string)
+ SaveLoad.append_string(path, "(%s)%s" % [now(), arg_string])
static func now():