diff options
author | Seth Hitefield <sdhitefield@gmail.com> | 2020-09-15 10:24:03 -0400 |
---|---|---|
committer | Martin Braun <martin@gnuradio.org> | 2021-01-11 12:27:55 -0800 |
commit | 43eac48b42c781c66b56279ff76e1b3d401f2753 (patch) | |
tree | 08d45757aa17c0f1027e6f7f888af2763a6dd9c5 /grc/core | |
parent | d165fe90e7318bc82f094dd5a64ae4294ec7d997 (diff) |
grc: Remove extra logger in grc/core/platform
This is an update for PR #2424. The extra debug output from GRC was
being generated by another logger instance in grc/core/platform that
did not respect the command line arguments.
This removes the extra logger and sets the logger level in main to
whatever is requested from the command line. See grc/main.py:43 for more
detail.
Diffstat (limited to 'grc/core')
-rw-r--r-- | grc/core/platform.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/grc/core/platform.py b/grc/core/platform.py index 7426c178f6..8ba473a2cc 100644 --- a/grc/core/platform.py +++ b/grc/core/platform.py @@ -26,7 +26,6 @@ from .FlowGraph import FlowGraph from .Connection import Connection logger = logging.getLogger(__name__) -logging.basicConfig(level=logging.INFO) class Platform(Element): |