Skip to content

Commit ea011c2

Browse files
committed
Fix console logging
1 parent 945a23a commit ea011c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/commons/log.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ local function log(level, msg)
6767
local msg_chunks = {}
6868
for _, line in ipairs(msg_lines) do
6969
table.insert(msg_chunks, {
70-
string.format("[%s] %s\n", LogConfigs.name, line),
70+
string.format("[%s] %s", LogConfigs.name, line),
7171
LogHighlights[level],
7272
})
7373
end

0 commit comments

Comments
 (0)