From 8d8e4ca764da0c8f1e8239fecfacb867712153c3 Mon Sep 17 00:00:00 2001 From: klytje Date: Thu, 18 Jan 2024 20:03:19 +0100 Subject: [PATCH] changed logging file location --- test/utest_sasview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utest_sasview.py b/test/utest_sasview.py index a5de8d4eb9..08df8776aa 100755 --- a/test/utest_sasview.py +++ b/test/utest_sasview.py @@ -7,7 +7,7 @@ import logging import logging.config -LOGGER_CONFIG_FILE = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'system', 'log.ini') +LOGGER_CONFIG_FILE = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'logging.ini') logging.config.fileConfig(LOGGER_CONFIG_FILE) logger = logging.getLogger(__name__)