An open API service indexing awesome lists of open source software.

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

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"}
```