From 43a2aeaf43b68f89d679c3c3e2c959721610c4ec Mon Sep 17 00:00:00 2001 From: Andrej Mitrovic Date: Fri, 14 May 2021 14:19:46 +0900 Subject: [PATCH] Flash test: Emit channel name --- source/agora/flash/Node.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/agora/flash/Node.d b/source/agora/flash/Node.d index 4e2fc75cf25..26120ff4eec 100644 --- a/source/agora/flash/Node.d +++ b/source/agora/flash/Node.d @@ -693,9 +693,9 @@ public abstract class FlashNode : FlashControlAPI update); continue; } - log.info("gossipChannelUpdates() added channel update: {}", - update); this.channel_updates[update.chan_id][update.direction] = update; + log.info("gossipChannelUpdates() added channel update: {}. chan_id: {}. direction: {}. address: {}", + update, update.chan_id, update.direction, cast(void*)&this.channel_updates); this.gossip_queue.insertBack(GossipEvent(update)); this.dump(); }