From 3eb2fabece3486b6293312250e08ef6fb73671e8 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Tue, 22 Aug 2023 20:16:15 +0700 Subject: [PATCH] Add files via upload --- loggorilla.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 loggorilla.py diff --git a/loggorilla.py b/loggorilla.py new file mode 100644 index 0000000..762b1fe --- /dev/null +++ b/loggorilla.py @@ -0,0 +1,13 @@ +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): + print(f"[loggorilla][{datetime.datetime.now()}][\033[36maccss\033[39m][\033[95m{loc}\033[39m] {msg}") + +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}")