util/log: Add TODO pointing out design flaw

This commit is contained in:
icex2
2020-09-02 19:53:05 +00:00
parent fbb69d4550
commit beea9e7bb7
+1
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);
}