From bf60ba30cd0689538777ad1db446a625b5993645 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Fri, 7 Aug 2026 16:55:47 +0200 Subject: [PATCH] log: removed check from log since it is already in log_formatted_string --- kernel/log.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/kernel/log.h b/kernel/log.h index 4b97fbede..f1bea8883 100644 --- a/kernel/log.h +++ b/kernel/log.h @@ -131,8 +131,6 @@ void log_formatted_string(std::string_view format, std::string str, LogSeverity template inline void log(FmtString...> fmt, const Args &... args) { - if (log_make_debug && !ys_debug(1)) - return; log_formatted_string(fmt.format_string(), fmt.format(args...)); }