aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/__init__.py
diff options
context:
space:
mode:
authorGravatar shtlrs <[email protected]>2024-02-13 22:52:19 +0100
committerGravatar shtlrs <[email protected]>2024-02-13 22:52:19 +0100
commit27be47d23874e8ae5eeed1bb5b777a0dab90e88a (patch)
tree5b3189aee819d30ae619ce9c5f22d670e04a1a95 /arthur/__init__.py
parentadd 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__.py4
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()