1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-08 20:43:12 +02:00

Let's log everything except ULOG_DEBUG on the console when booting.

Better than missing an important message.
This commit is contained in:
Bram Matthys
2021-08-06 16:24:44 +02:00
parent 6d216c3a90
commit 3eef42c385
+1 -1
View File
@@ -880,7 +880,7 @@ void do_unreal_log_disk(LogLevel loglevel, char *subsystem, char *event_id, char
//RunHook3(HOOKTYPE_LOG, flags, timebuf, text_buf); // FIXME: call with more parameters and possibly not even 'text_buf' at all
if (!loop.ircd_forked && (loglevel >= ULOG_ERROR))
if (!loop.ircd_forked && (loglevel > ULOG_DEBUG))
{
#ifdef _WIN32
win_log("* %s", text_buf);