From 89afa62a4fe2be30b37acfc45f1ea2cd3215a2c4 Mon Sep 17 00:00:00 2001 From: dasman Date: Wed, 26 Jun 2024 14:50:55 +0300 Subject: [PATCH] darkirc: add a debug msg when if dag not synced and skipping --- bin/darkirc/src/irc/client.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/darkirc/src/irc/client.rs b/bin/darkirc/src/irc/client.rs index 74ea98d2f..a9c9ea686 100644 --- a/bin/darkirc/src/irc/client.rs +++ b/bin/darkirc/src/irc/client.rs @@ -175,6 +175,7 @@ impl Client { // If the DAG is not synced yet, queue client lines // Once synced, send queued lines and continue as normal if !*self.server.darkirc.event_graph.synced.read().await{ + debug!("DAG is still syncing, queuing and skipping..."); event_queue.push_back(event); continue }