Skip to content

Commit

Permalink
Updating logger config to be more verbose (#25)
Browse files Browse the repository at this point in the history
Signed-off-by: KBOCPDocs <[email protected]>
  • Loading branch information
vishnuchalla authored May 14, 2024
1 parent 518c095 commit f715ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fmatch/matcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(
handler = logging.StreamHandler(sys.stdout)
handler.setLevel(level)
formatter = logging.Formatter(
"%(asctime)s - %(name)s - %(levelname)s - %(message)s"
"%(asctime)s [%(name)s:%(filename)s:%(lineno)d] %(levelname)s: %(message)s"
)
handler.setFormatter(formatter)
self.logger.addHandler(handler)
Expand Down

0 comments on commit f715ad5

Please sign in to comment.