Skip to content

Commit

Permalink
Merge pull request #6 from willyw0nka/logging
Browse files Browse the repository at this point in the history
fix: specify logger name
  • Loading branch information
willyw0nka authored Apr 16, 2024
2 parents 8faa647 + bfdcdaa commit 6f2dd65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygrype/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import sys

def get_logger() -> logging.Logger:
logger = logging.getLogger()
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)

handler = logging.StreamHandler(sys.stdout)
Expand Down

0 comments on commit 6f2dd65

Please sign in to comment.