Metadata-Version: 2.5
Name: simple_logger_RI
Version: 0.0.1
Summary: Small package that can help with logging files to the terminal or .txt files.
Project-URL: Homepage, https://github.com
Project-URL: Issues, https://github.com/issues
Author-email: Reactor Interactive <reactor645zakelijk@gmail.com>
License: MIT
License-File: LICENSE.txt
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: colorist
Description-Content-Type: text/markdown

# logger

this is a small module that might help some people with bigger projects. It can log info, warnings and errors to a file or your terminal. 

It has 2 functions: make_log and new_log_file

Use new_log_file to save your old latestlog.txt with a time stamp
Use make_log with following parameters, same order: message (Just your message as a string), type (can be INFO, WARN or ERROR), terminal (boolean, if True, log will be printed, if False, log will be put in latestlog.txt. Standard value is False)