diff options
| author | gingerBill <bill@gingerbill.org> | 2020-08-12 19:15:47 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-08-12 19:15:47 +0100 |
| commit | 674aeffee4483aff5030ec40082ecd77da47f7a0 (patch) | |
| tree | 7ea4db9d642b3d4e132e5ecd9df87d8332a15e45 /core/log | |
| parent | 546759bdef497bc8ddbe72d9908e7e54dc18be6c (diff) | |
Fix typo
Diffstat (limited to 'core/log')
| -rw-r--r-- | core/log/multi_logger.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/log/multi_logger.odin b/core/log/multi_logger.odin index 430b18632..7b852bb5c 100644 --- a/core/log/multi_logger.odin +++ b/core/log/multi_logger.odin @@ -21,7 +21,7 @@ multi_logger_proc :: proc(logger_data: rawptr, level: Level, text: string, options: Options, location := #caller_location) { data := cast(^Multi_Logger_Data)logger_data; for log in data.loggers { - if level < logger.lowest_level { + if level < log.lowest_level { return; } log.procedure(log.data, level, text, log.options, location); |