https://github.com/neotoxic-off/pll
🔍 Python Logging Library
https://github.com/neotoxic-off/pll
Last synced: 5 months ago
JSON representation
🔍 Python Logging Library
- Host: GitHub
- URL: https://github.com/neotoxic-off/pll
- Owner: Neotoxic-off
- License: mit
- Created: 2023-09-07T19:44:53.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-09-13T12:35:52.000Z (almost 3 years ago)
- Last Synced: 2023-09-14T01:18:42.365Z (over 2 years ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PLL
🔍 Python Logging Library
## Usage
##### Code
```PY
from logger import Logger
class Class0:
def __init__(self):
self.a = "1"
self.b = 0
class Class1:
def __init__(self):
self.class = Class0()
self.logger = Logger()
self.run()
def run(self):
self.logger("example")
self.logger(1)
self.logger(self.class)
```
##### Output
```
example
1
{"a": "1", "b": "0"}
```