Skip to content
Snippets Groups Projects
Commit 923d020f authored by dilawar's avatar dilawar :ant:
Browse files

chore: default log-level is INFO.

parent c42c0eac
No related branches found
No related tags found
No related merge requests found
Pipeline #3624 failed with stages
in 11 seconds
"""BiTIA command line interface to submit job to the BiTIA server.
bitia dir
(c) 2022-, Subconscious Compute
"""
__author__ = "Dilawar Singh"
__email__ = "dilawar@subcom.tech"
import validators
import shutil
import sys
......@@ -22,7 +19,7 @@ from rich.logging import RichHandler
FORMAT = "%(message)s"
logging.basicConfig(
level="NOTSET", format=FORMAT, datefmt="[%X]", handlers=[RichHandler()]
level="INFO", format=FORMAT, datefmt="[%X]", handlers=[RichHandler()]
)
logger = logging.getLogger("bitia")
......
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment