Python Script for logging format.
Go to file
2024-11-14 13:00:35 +07:00
LICENSE Initial commit 2023-08-22 20:11:02 +07:00
loggorilla.py Always flush 2024-11-14 13:00:35 +07:00
README.md Update README.md 2023-08-22 20:14:58 +07:00

LogGorilla

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"     )