diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2022-08-11 16:18:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-11 16:18:46 +0100 |
| commit | c041d15569cb828565b462bc11543ddf6e85ceda (patch) | |
| tree | 2db4e48aa61a20d5d1bc0acae0c0683afb608912 | |
| parent | e285796fc11148c2f461a1d3753d28babd83769e (diff) | |
| parent | d354d36a3b86268c09cdb342ead4edfc31bdd370 (diff) | |
Merge pull request #1928 from IanLilleyT/logger_extra_space
Removed extra space from file_console_logger
| -rw-r--r-- | core/log/file_console_logger.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/log/file_console_logger.odin b/core/log/file_console_logger.odin index 70fee0be9..bf537a161 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) { |