From 3f5cc2e111f07b56a0f5b2e43c87c33e0aebd075 Mon Sep 17 00:00:00 2001 From: bizcochito Date: Mon, 7 Feb 2022 11:40:59 +0100 Subject: [PATCH] solved problem where log had all in 1 line --- data/scripts/debug.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/scripts/debug.lua b/data/scripts/debug.lua index c363cbb..402eee5 100644 --- a/data/scripts/debug.lua +++ b/data/scripts/debug.lua @@ -94,5 +94,5 @@ function logPrint(string) end function logWrite(string) - if logging then love.filesystem.append(logFile, string) end + if logging then love.filesystem.append(logFile, string.."\n") end end