Skip to content

Commit

Permalink
Add verbose log level name
Browse files Browse the repository at this point in the history
  • Loading branch information
multimeric committed Sep 4, 2024
1 parent ce071c8 commit add5f27
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion filesender/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,12 @@ def common_args(
"base_url": base_url
}
logging.basicConfig(
level=log_level, format= "%(message)s", datefmt="[%X]", handlers=[RichHandler()]
level=log_level,
format= "%(message)s",
datefmt="[%X]",
handlers=[RichHandler()]
)
logging.addLevelName(LogLevel.VERBOSE.value, 'VERBOSE')


@app.command(context_settings=context)
Expand Down

0 comments on commit add5f27

Please sign in to comment.