Metadata-Version: 2.1
Name: loggerjava
Version: 0.0.5
Summary: an easy logger outputs like java logs
Author: HTony03
Author-email: HTony03 <HTony03@foxmail.com>
Project-URL: Homepage, https://github.com/HTony03/loggerjava
Project-URL: Issues, https://github.com/HTony03/loggerjava/issues
Keywords: python,logger
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

# loggerjava

---
an easy logger which outputs like java
### how to use

use the following codes:

import loggerjava

logger = loggerjava

logger.info("test")

logger.warn("test",pos="insidecommand")

### output
[20:39:00] [main/debug]: test

[20:39:00] [main/info]: test

[20:39:00] [main/WARNING]: test

[20:39:00] [main/ERROR]: test

[20:39:00] [main/FATAL]: test

### config

logger.confg()

### versions

0.0.5 added the outputconfig and the loadconfig function,edited the config part to let it output log

0.0.4 upgrade the config sys and add helps

0.0.3 upload the descriptions

0.0.2 initial upload
