core:log: make multi logger use all loggerts instead of breaking on first one with lower level

This commit is contained in:
FourteenBrush
2026-07-15 17:32:16 +02:00
committed by GitHub
parent 7c2b219259
commit 353e451a0f

View File

@@ -48,7 +48,7 @@ multi_logger_proc :: proc(logger_data: rawptr, level: Level, text: string,
data := cast(^Multi_Logger_Data)logger_data
for log in data.loggers {
if level < log.lowest_level {
return
continue
}
log.procedure(log.data, level, text, log.options, location)
}