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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simpler-logging
3
- Version: 1.0.0
3
+ Version: 1.1.1
4
4
  Summary: Simple zero-setup logging.
5
5
  Keywords: logging,logger,simple,zero-setup
6
6
  Author: minoupower554
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "simpler-logging"
3
- version = "1.0.0"
3
+ version = "1.1.1"
4
4
  description = "Simple zero-setup logging."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -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