From 71e589e4618a5a2ea54dc709c6a2ac104a1a63c5 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 27 Nov 2023 13:46:30 -0500 Subject: [PATCH] Remove superflous debug output This is printed in the startup logo block anyways. --- node-daemon/pvcnoded/Daemon.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index e09c7d50..7c48b6d4 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -65,11 +65,6 @@ def entrypoint(): config = pvcnoded.util.config.get_configuration() config["pvcnoded_version"] = version - # Set some useful booleans for later (fewer characters) - debug = config["debug"] - if debug: - print("DEBUG MODE ENABLED") - # Create and validate our directories pvcnoded.util.config.validate_directories(config)