otampy 2.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
otampy/__init__.py ADDED
@@ -0,0 +1,8 @@
1
+ import logging
2
+
3
+ from .utils.logging_utils import logging_formatter
4
+
5
+ # Configure logging using the `name=` parameter.
6
+ # name="sendrec" : Shows only sendrec package logs (suppresses unrelated dependencies).
7
+ # name=None : Shows all logs from all imported packages (including dependencies).
8
+ logging_formatter(name=None, level_width=5, name_width=20, level=logging.ERROR)