Skip to content

Commit

Permalink
feat(otf_api): add basic logging configuration to improve debugging a…
Browse files Browse the repository at this point in the history
…nd monitoring
  • Loading branch information
NodeJSmith committed Dec 23, 2024
1 parent fb16093 commit f8e1d53
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/otf_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
from logging import basicConfig, getLogger

from .api import Otf
from .auth import OtfUser

basicConfig(level="INFO")
logger = getLogger(__name__)

__version__ = "0.8.3-dev1"


Expand Down

0 comments on commit f8e1d53

Please sign in to comment.