Skip to content

Commit

Permalink
Receiver
Browse files Browse the repository at this point in the history
- Use new logging facility
  • Loading branch information
deavmi committed May 12, 2024
1 parent f70d063 commit 613adf7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/birchwood/client/receiver.d
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ version(unittest)
{
import std.stdio : writeln;
}
import birchwood.logging;

/**
* Manages the receive queue and performs
Expand Down Expand Up @@ -150,7 +151,7 @@ public final class ReceiverThread : Thread
*/
if(pingMessage !is null)
{
logger.log("Found a ping: "~pingMessage.toString());
DEBUG("Found a ping: "~pingMessage.toString());

/* Extract the PING ID */
string pingID = pingMessage.getParams();
Expand Down

0 comments on commit 613adf7

Please sign in to comment.