From: sbkelley Date: Tue, 2 Dec 2025 05:54:56 +0000 (-0500) Subject: finally fix logfile name X-Git-Url: https://skyeroc.xyz/gitweb/?a=commitdiff_plain;h=e312a93b0700dc7e272e48443ebfb99060616a41;p=obs-ctl finally fix logfile name --- diff --git a/src/obs_ctl/log.py b/src/obs_ctl/log.py index 31d9d66..c93c788 100644 --- a/src/obs_ctl/log.py +++ b/src/obs_ctl/log.py @@ -9,7 +9,7 @@ VERBOSE_LEVELS = ["CRITICAL", "ERROR", "WARNING", "INFO", "DEBUG"] dirs = platformdirs.PlatformDirs(APPNAME, APPAUTHOR, ensure_exists=True) logfile_fmt = logging.Formatter('%(asctime)s : %(name)s : %(levelname)s : %(message)s') -logfile_hdlr = logging.FileHandler(Path(dirs.user_log_dir).joinpath("projectstruct.log")) +logfile_hdlr = logging.FileHandler(Path(dirs.user_log_dir).joinpath("obs-ctl.log")) logfile_hdlr.setFormatter(logfile_fmt) logfile_hdlr.setLevel("DEBUG")