mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 23:28:48 +00:00
Fix typo
This commit is contained in:
@@ -21,7 +21,7 @@ multi_logger_proc :: proc(logger_data: rawptr, level: Level, text: string,
|
|||||||
options: Options, location := #caller_location) {
|
options: Options, location := #caller_location) {
|
||||||
data := cast(^Multi_Logger_Data)logger_data;
|
data := cast(^Multi_Logger_Data)logger_data;
|
||||||
for log in data.loggers {
|
for log in data.loggers {
|
||||||
if level < logger.lowest_level {
|
if level < log.lowest_level {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
log.procedure(log.data, level, text, log.options, location);
|
log.procedure(log.data, level, text, log.options, location);
|
||||||
|
|||||||
Reference in New Issue
Block a user