Update README.md

This commit is contained in:
Dita Aji Pratama 2023-08-22 20:14:58 +07:00 committed by GitHub
parent 53e3bb8bd4
commit 3000c48eab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,2 +1,17 @@
# loggorilla # LogGorilla
Python Script for logging format. Python Script for logging format.
There is 4 type for this logging availability:
- `prcss` for logging a process
- `fyinf` for logging a value
- `accss` for logging an access
- `error` for logging the error
## Usage
APIADDR = "/your/api/page/directory"
loggorilla.prcss(APIADDR, f"Checking authority" )
loggorilla.fyinf(APIADDR, f"Username: {username}" )
loggorilla.prcss(APIADDR, f"{username} try to logged in and failed" )
loggorilla.error(APIADDR, f"Username and Password is Incorrect" )