diff options
author | 2024-02-13 22:52:19 +0100 | |
---|---|---|
committer | 2024-02-13 22:52:19 +0100 | |
commit | 27be47d23874e8ae5eeed1bb5b777a0dab90e88a (patch) | |
tree | 5b3189aee819d30ae619ce9c5f22d670e04a1a95 /arthur/__init__.py | |
parent | add sentry-sdk package (diff) |
move logger to its own package
This sets the place to centralize all logs configs in its own module
Diffstat (limited to 'arthur/__init__.py')
-rw-r--r-- | arthur/__init__.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arthur/__init__.py b/arthur/__init__.py index 269a320..a163be5 100644 --- a/arthur/__init__.py +++ b/arthur/__init__.py @@ -2,17 +2,13 @@ import asyncio import os -from functools import partial from typing import TYPE_CHECKING -import loguru from pydis_core.utils import apply_monkey_patches if TYPE_CHECKING: from arthur.bot import KingArthur -logger = loguru.logger.opt(colors=True) -logger.opt = partial(logger.opt, colors=True) apply_monkey_patches() |