aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-04 16:50:13 +0200
committerGitHub <noreply@github.com>2025-10-04 16:50:13 +0200
commit9ed125bcf65745c44c424ea4c86de7bb389c256b (patch)
tree1cae3b901c95cf12cb1f73c035e65c9858b68a88
parent6d8f4b85a8b0344220e54700212b3b67f04b5878 (diff)
parentc6300de0d12e2c63bc1f8111b82fc5bcc99a15fc (diff)
Merge pull request #5752 from connnnal/tprint-comment
Remove inaccurate tprint concern
-rw-r--r--core/log/log.odin2
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)
}