1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 12:23:32 +02:00
- Use new logging facility
This commit is contained in:
Tristan B. Velloza Kildaire 2024-05-12 17:58:35 +02:00
parent f70d063591
commit 613adf7628

View File

@ -21,6 +21,7 @@ version(unittest)
{ {
import std.stdio : writeln; import std.stdio : writeln;
} }
import birchwood.logging;
/** /**
* Manages the receive queue and performs * Manages the receive queue and performs
@ -150,7 +151,7 @@ public final class ReceiverThread : Thread
*/ */
if(pingMessage !is null) if(pingMessage !is null)
{ {
logger.log("Found a ping: "~pingMessage.toString()); DEBUG("Found a ping: "~pingMessage.toString());
/* Extract the PING ID */ /* Extract the PING ID */
string pingID = pingMessage.getParams(); string pingID = pingMessage.getParams();