feat: Print log directory to make it easier to find
All checks were successful
Build Docker / BuildImage (push) Successful in 34s

This commit is contained in:
Nathan Woodburn 2024-09-12 14:01:56 +10:00
parent 27e9041bd1
commit cb4c94a0b4
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -50,6 +50,8 @@ if not os.path.exists(log_dir):
os.mkdir("./logs")
log_dir = "./logs"
print(f"Log directory: {log_dir}", flush=True)
def find(name, path):
for root, dirs, files in os.walk(path):