aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/log.py
diff options
context:
space:
mode:
Diffstat (limited to 'arthur/log.py')
-rw-r--r--arthur/log.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/arthur/log.py b/arthur/log.py
new file mode 100644
index 0000000..cfc6c62
--- /dev/null
+++ b/arthur/log.py
@@ -0,0 +1,6 @@
+from functools import partial
+
+import loguru
+
+logger = loguru.logger.opt(colors=True)
+logger.opt = partial(logger.opt, colors=True)