diff --git a/src/app/core/common.h b/src/app/core/common.h index f4f0791d..defe8209 100644 --- a/src/app/core/common.h +++ b/src/app/core/common.h @@ -222,9 +222,7 @@ template static void logm(const std::string &category, const absl::FormatSpec &format, const Args &...args) { std::string message = absl::StrFormat(format, args...); - if (log_to_console) { - std::cout << category << ": " << message << std::endl; - } + std::cout << category << ": " << message << std::endl; if (log_categories.contains(category)) { log_categories[category].push_back(message); } else {