simpler-logging 1.0.0__tar.gz → 1.1.1__tar.gz
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.
- {simpler_logging-1.0.0 → simpler_logging-1.1.1}/PKG-INFO +1 -1
- {simpler_logging-1.0.0 → simpler_logging-1.1.1}/pyproject.toml +1 -1
- {simpler_logging-1.0.0 → simpler_logging-1.1.1}/src/simpler_logging/__init__.py +6 -0
- {simpler_logging-1.0.0 → simpler_logging-1.1.1}/LICENSE +0 -0
- {simpler_logging-1.0.0 → simpler_logging-1.1.1}/README.md +0 -0
- {simpler_logging-1.0.0 → simpler_logging-1.1.1}/src/simpler_logging/logger.py +0 -0
- {simpler_logging-1.0.0 → simpler_logging-1.1.1}/src/simpler_logging/py.typed +0 -0
|
@@ -2,3 +2,9 @@ from .logger import LogLevel as LogLevel, Logger as Logger, Handler as Handler
|
|
|
2
2
|
|
|
3
3
|
logger = Logger("Main")
|
|
4
4
|
"""a global Logger instance for convenience."""
|
|
5
|
+
|
|
6
|
+
debug = logger.debug
|
|
7
|
+
info = logger.info
|
|
8
|
+
warning = logger.warn
|
|
9
|
+
error = logger.error
|
|
10
|
+
fatal = logger.fatal
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|