From c6300de0d12e2c63bc1f8111b82fc5bcc99a15fc Mon Sep 17 00:00:00 2001 From: connnnal <216976529+connnnal@users.noreply.github.com> Date: Sat, 4 Oct 2025 14:58:28 +0100 Subject: [PATCH] Remove inaccurate tprint concern --- core/log/log.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }