aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorIan Lilley <ianlilleyt@gmail.com>2022-08-03 13:22:12 -0400
committerIan Lilley <ianlilleyt@gmail.com>2022-08-03 13:22:12 -0400
commitd354d36a3b86268c09cdb342ead4edfc31bdd370 (patch)
tree086c08ee47f3cbd23807bdc2971d9b82f64495a9 /core
parent73beed0477936ee5b64b9b02f8fa7e399c623c8b (diff)
removed extra space from file_console_logger
Diffstat (limited to 'core')
-rw-r--r--core/log/file_console_logger.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/log/file_console_logger.odin b/core/log/file_console_logger.odin
index 7f0d3b07a..c1671a9da 100644
--- a/core/log/file_console_logger.odin
+++ b/core/log/file_console_logger.odin
@@ -95,7 +95,7 @@ file_console_logger_proc :: proc(logger_data: rawptr, level: Level, text: string
fmt.sbprintf(&buf, "[%s] ", data.ident)
}
//TODO(Hoej): When we have better atomics and such, make this thread-safe
- fmt.fprintf(h, "%s %s\n", strings.to_string(buf), text)
+ fmt.fprintf(h, "%s%s\n", strings.to_string(buf), text)
}
do_level_header :: proc(opts: Options, level: Level, str: ^strings.Builder) {