1
0
mirror of https://github.com/djhackersdev/bemanitools.git synced 2025-02-17 19:19:16 +01:00

util/log: Add TODO pointing out design flaw

This commit is contained in:
icex2 2020-08-21 14:28:13 +02:00
parent fbb69d4550
commit beea9e7bb7

View File

@ -59,6 +59,7 @@ static void log_builtin_format(
result = str_format(
line, sizeof(line), "%c:%s: %s\n", chars[msg_level], module, msg);
// TODO move this up because there is no reason to format and do all the above if disabled
if (msg_level <= log_level) {
log_writer(log_writer_ctx, line, result);
}