Browse Source

Merge pull request #5752 from connnnal/tprint-comment

Remove inaccurate tprint concern
Jeroen van Rijn 1 week ago
parent
commit
9ed125bcf6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/log/log.odin

+ 1 - 1
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)
 }