2023-05-03 22:56:38 +07:00
|
|
|
import datetime
|
|
|
|
|
|
|
|
def prcss(loc, msg):
|
|
|
|
print(f"[loggorilla][{datetime.datetime.now()}][\033[32mprcss\033[39m][\033[95m{loc}\033[39m] {msg}")
|
|
|
|
|
|
|
|
def accss(loc, msg):
|
2023-05-19 19:52:03 +07:00
|
|
|
print(f"[loggorilla][{datetime.datetime.now()}][\033[36maccss\033[39m][\033[95m{loc}\033[39m] {msg}")
|
2023-05-03 22:56:38 +07:00
|
|
|
|
|
|
|
def fyinf(loc, msg):
|
|
|
|
print(f"[loggorilla][{datetime.datetime.now()}][\033[93mfyinf\033[39m][\033[95m{loc}\033[39m] {msg}")
|
|
|
|
|
|
|
|
def error(loc, msg):
|
|
|
|
print(f"[loggorilla][{datetime.datetime.now()}][\033[31merror\033[39m][\033[95m{loc}\033[39m] {msg}")
|