Metadata-Version: 2.1
Name: log4me
Version: 0.0.2
Summary: Basic logger for personal python projects
Home-page: https://github.com/LucasHahmann/log4me
Author: Lucas Hahmann
Author-email: lucas@hahmann-trier.de
License: MIT
Keywords: logger
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENCE.txt

# log4me

A simple python logger for personal usage.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/nagstable/) to install foobar.

```bash
pip install log4me
```

## Usage

```python
import log4me

# Init the logger                 # Create the dictionary
log = log4me.Logger("ServerLog", "./log/")

# And log
log.info("New Connection", "Address ... joined")

log.success("Created", "New file created")

log.warning("Lates version", "Client have not the latest version")

log.error("File", "Cant write to file")
```

## License
[MIT](https://choosealicense.com/licenses/mit/)

Change Log
==========

0.0.1 (30.05.2022)
------------------
- First release
    - Logs (Info, Success, Warning, Error)
    - Print the logs to a log file

