diff --git a/glass/src/app/native/cpp/main.cpp b/glass/src/app/native/cpp/main.cpp index b257b683e1..609e0555d8 100644 --- a/glass/src/app/native/cpp/main.cpp +++ b/glass/src/app/native/cpp/main.cpp @@ -98,8 +98,8 @@ static void NtInitialize() { level = "ERROR: "; } else if (msg->level >= NT_LOG_WARNING) { level = "WARNING: "; - } else if (!gNetworkTablesDebugLog) { - return; + } else if (msg->level < NT_LOG_INFO && !gNetworkTablesDebugLog) { + continue; } gNetworkTablesLog.Append(fmt::format( "{}{} ({}:{})\n", level, msg->message, msg->filename, msg->line));