diff options
-rw-r--r-- | gemato/cli.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gemato/cli.py b/gemato/cli.py index 44ea423..4df8ee7 100644 --- a/gemato/cli.py +++ b/gemato/cli.py @@ -659,5 +659,8 @@ def main(argv): def setuptools_main(): - logging.getLogger().setLevel(logging.INFO) + logging.basicConfig( + format="[{levelname:>7}] {message}", + style="{", + level=logging.INFO) sys.exit(main(sys.argv)) |