From 6aa1b529ab030d9bb9f16f0b6b1a9a2a8accbe08 Mon Sep 17 00:00:00 2001 From: Richard Kiss Date: Wed, 21 Oct 2020 14:11:24 -0700 Subject: [PATCH] Fix https://github.com/Chia-Network/chia-blockchain/issues/485 --- src/server/start_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/start_service.py b/src/server/start_service.py index 66f85c9907a8..0ca8e55b0a9b 100644 --- a/src/server/start_service.py +++ b/src/server/start_service.py @@ -59,7 +59,7 @@ def __init__( service_config = load_config_cli(root_path, "config.yaml", service_name) else: service_config = load_config(root_path, "config.yaml", service_name) - initialize_logging(service_name, config["logging"], root_path) + initialize_logging(service_name, service_config["logging"], root_path) self._rpc_info = rpc_info