From 5a5d450e58dbf4154338ba9fa247e96f2ae5fa01 Mon Sep 17 00:00:00 2001 From: rene <41963722+renaynay@users.noreply.github.com> Date: Tue, 28 Jan 2025 11:03:49 +0100 Subject: [PATCH] fix(nodebuilder/pruner): Change archival mode warning message (#4064) --- nodebuilder/pruner/flags.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodebuilder/pruner/flags.go b/nodebuilder/pruner/flags.go index 986fb9eaf5..873bcb5da5 100644 --- a/nodebuilder/pruner/flags.go +++ b/nodebuilder/pruner/flags.go @@ -48,8 +48,8 @@ If you want to retain history beyond the sampling window, please pass the --arch // Warn the user if pruning is disabled and archival is not enabled for Full and Bridge nodes if !archivalChanged && (tp == node.Full || tp == node.Bridge) { - log.Warn(`WARNING: Pruning is disabled. -Pruning will become the default mode for all nodes. + log.Warn(`WARNING: Node is now running in ARCHIVAL mode. +PRUNING mode will become the default for all nodes. If you want to retain history beyond the sampling window, please pass the --archival flag.`) } }