diff options
| author | connnnal <216976529+connnnal@users.noreply.github.com> | 2025-10-04 14:58:28 +0100 |
|---|---|---|
| committer | connnnal <216976529+connnnal@users.noreply.github.com> | 2025-10-04 14:58:28 +0100 |
| commit | c6300de0d12e2c63bc1f8111b82fc5bcc99a15fc (patch) | |
| tree | 1cae3b901c95cf12cb1f73c035e65c9858b68a88 /core/log | |
| parent | 6d8f4b85a8b0344220e54700212b3b67f04b5878 (diff) | |
Remove inaccurate tprint concern
Diffstat (limited to 'core/log')
| -rw-r--r-- | core/log/log.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/log/log.odin b/core/log/log.odin index 2b6317060..b2efe8beb 100644 --- a/core/log/log.odin +++ b/core/log/log.odin @@ -193,7 +193,7 @@ log :: proc(level: Level, args: ..any, sep := " ", location := #caller_location) return } runtime.DEFAULT_TEMP_ALLOCATOR_TEMP_GUARD() - str := fmt.tprint(..args, sep=sep) //NOTE(Hoej): While tprint isn't thread-safe, no logging is. + str := fmt.tprint(..args, sep=sep) logger.procedure(logger.data, level, str, logger.options, location) } |