Metadata-Version: 2.1
Name: justanotherlogger
Version: 0.0.3
Summary: A very simple logger
Author: RockArtist33
Author-email: RockArtist33 <RockArtist33@proton.me>
Project-URL: Homepage, https://github.com/RockArtist33/JustAnotherLogger.git/
Project-URL: Issues, https://github.com/RockArtist33/JustAnotherLogger.git/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

## Just Another Logger
A simple logger that i use in my python projects.

## Usage
You can import the logger class like this:

```py
from justanotherlogger import Logger
```
To set it up, you run:
```py
logger = Logger.Logger()
logger.setup(type=Logger.INFO, filenameDirectory = "./", filename = f"{str(datetime.date.today())}.log"):
```
| Parameter       | Usage                                                                                   |
|----------------:|-----------------------------------------------------------------------------------------|
|type             | Determines the minimum Error level of the log, Any log under this level will be ignored |
|filenameDirectory| Tells the Logger which directory to store the log in.                                   |
|filename         | Tells the logger what to call the log                                                   |

