Skip to content

Commit

Permalink
remove "logs" subfolder
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Oct 10, 2022
1 parent 73b99a8 commit 66d7b71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ovos_utils/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def init(cls, config=None):
from ovos_utils.xdg_utils import xdg_state_home

config = config or {}
cls.base_path = config.get("path") or f"{xdg_state_home()}/{get_xdg_base()}/logs"
cls.base_path = config.get("path") or f"{xdg_state_home()}/{get_xdg_base()}"
cls.max_bytes = config.get("max_bytes", 50000000)
cls.backup_count = config.get("backup_count", 3)
cls.level = config.get("level", "INFO")
Expand Down

0 comments on commit 66d7b71

Please sign in to comment.