mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-04 14:48:47 +00:00
Merge pull request #1928 from IanLilleyT/logger_extra_space
Removed extra space from file_console_logger
This commit is contained in:
@@ -95,7 +95,7 @@ file_console_logger_proc :: proc(logger_data: rawptr, level: Level, text: string
|
|||||||
fmt.sbprintf(&buf, "[%s] ", data.ident)
|
fmt.sbprintf(&buf, "[%s] ", data.ident)
|
||||||
}
|
}
|
||||||
//TODO(Hoej): When we have better atomics and such, make this thread-safe
|
//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) {
|
do_level_header :: proc(opts: Options, level: Level, str: ^strings.Builder) {
|
||||||
|
|||||||
Reference in New Issue
Block a user