From b6778b8aef2baed0943e1391bb46c3f17f9b673b Mon Sep 17 00:00:00 2001 From: Nazar Mokrynskyi Date: Wed, 2 Aug 2023 23:53:23 +0300 Subject: [PATCH] Helpful log message that initial DSN sync is happening --- crates/subspace-service/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/subspace-service/src/lib.rs b/crates/subspace-service/src/lib.rs index 71e19a1be7..83cc387db7 100644 --- a/crates/subspace-service/src/lib.rs +++ b/crates/subspace-service/src/lib.rs @@ -719,6 +719,8 @@ where // TODO: This prevents SIGINT from working properly if config.sync_from_dsn { + info!("⚙️ Starting initial sync from DSN, this might take some time"); + let mut imported_blocks = 0; // Repeat until no new blocks are imported