Metadata-Version: 2.1
Name: KrypticLogger
Version: 0.2
Summary: KrypticLogger is a tool to help better organize and minimizing the amount of code while logging! 
Home-page: https://github.com/KrypticStudio/KrypticLogger/
Author: Kryptic Studio
Author-email: kennethc@kryptic-studio.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Kryptic Studio - KrypticLogger

KrypticLogger is a tool to help better organize and minimizing the amount of code while logging!

## Installation

1. Clone Repository to Project Folder.
```bash
$ git clone https://github.com/KrypticStudio/KrypticLogger
```
2. Install requirements
```bash
$ pip install -r requirements.txt
```
3. Install setup.py
```bash
$ python3 setup.py install
```

## Usage
1. Import KrypticLogger!
```python
from KrypticLogger import log #as log
import KrypticLogger.logger as logPath
```
2. Call it anywhere!
```python
#### Set path for log file
	logPath.path = "Logs/log.txt"
### Parameters
    # log = True #Logs to terminal or cmd
    # write = Ture #Writes log to file
    # time = True #Adds current time to log
log.LOG_EXAMPLE("Message", log = True, write = True, time = True)
```
3. EXAMPLE
```python
# Example
from KrypticLogger.logger import log
import KrypticLogger.logger as logPath

# Setting Log Path(Optional) ***DEFAULT "log.txt"
logPath.path = "Logs/log.txt"

# Calling Logs
log.debug("Debugging Example", log = True, write = True, time = True)
log.error("Error Example", log = True, write = True, time = True, code="Error Code", critical = True)
log.info("Info Example", log = True, write = True, time = True)
log.log("Logging Example", log = True, write = True, time = True)
log.success("Success Example", log = True, write = True, time = True)
log.track("Tracking Example", log = True, write = True, time = True)
log.warn("Warning Example", log = True, write = True, time = True)
```
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License


