From 46d5afd6e86275450364f7e317f065c7498b9309 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Mon, 5 Aug 2019 19:14:06 +0100 Subject: [PATCH] Desync: Change sync event logging to desync debug level 2 --- src/network/network.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/network/network.cpp b/src/network/network.cpp index 0e3d086301..b4d6823d65 100644 --- a/src/network/network.cpp +++ b/src/network/network.cpp @@ -857,7 +857,7 @@ void NetworkGameLoop() /* We don't want to log multiple times if paused. */ static Date last_log; if (last_log != _date) { - DEBUG(desync, 1, "sync: %08x; %02x; %08x; %08x", _date, _date_fract, _random.state[0], _random.state[1]); + DEBUG(desync, 2, "sync: %08x; %02x; %08x; %08x", _date, _date_fract, _random.state[0], _random.state[1]); last_log = _date; } }