diff --git a/src/logger.py b/src/logger.py index 7a01371..8940e64 100644 --- a/src/logger.py +++ b/src/logger.py @@ -5,4 +5,6 @@ def out(msg :str, level :str = "OTHR"): print(logline) tmpfile = "dbman-log" with open(tmpfile, 'a') as logfile: - logfile.write(f'{logline}\n') \ No newline at end of file + logfile.write(f'{logline}\n') + +log.out("logger.py: Logger module loaded", "DBUG") \ No newline at end of file