Skip to content

Commit

Permalink
- Set main logger level to INFO.
Browse files Browse the repository at this point in the history
Signed-off-by: schlopp96 <[email protected]>
  • Loading branch information
schlopp96 committed May 3, 2022
1 parent 6c60adf commit 9b627f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PyFiTransfer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

def init_logger():
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
logger.setLevel(logging.INFO)

formatter = logging.Formatter(
"[%(asctime)s : %(levelname)s] - %(message)s",
Expand All @@ -35,7 +35,7 @@ def init_logger():

logger = init_logger()

BORDER: str = '='.ljust(50, '=')
BORDER: str = '\n='.ljust(50, '=')


def main() -> NoReturn | None:
Expand Down

0 comments on commit 9b627f2

Please sign in to comment.