Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

370 restrict info logging to just ephys link #372

Merged
merged 3 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ephys_link/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0b2"
__version__ = "2.0.0b3"
2 changes: 1 addition & 1 deletion src/ephys_link/util/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ def __init__(self, *, enable_debug: bool) -> None:

# Config logger.
basicConfig(
level=DEBUG if enable_debug else INFO,
format="%(message)s",
datefmt="[%I:%M:%S %p]",
handlers=[RichHandler(rich_tracebacks=True)],
)
self._log = getLogger("rich")
self._log.setLevel(DEBUG if enable_debug else INFO)

# Install Rich traceback.
install()
Expand Down