refactor(storage): relocate logs and sessions

This commit is contained in:
2026-07-29 19:13:13 +05:00
parent fbeb80eece
commit 3d5b2a65ce
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ if __name__ == "__main__":
level=logging.INFO,
format="%(asctime)s | %(levelname)s | %(name)s | %(message)s",
handlers=[
logging.FileHandler("bot.log", encoding="utf-8"),
logging.FileHandler("logs/bot.log", encoding="utf-8"),
logging.StreamHandler(),
],
)