]> skyeroc.xyz Git - obs-ctl/commitdiff
finally fix logfile name
authorsbkelley <sb24kelley@gmail.com>
Tue, 2 Dec 2025 05:54:56 +0000 (00:54 -0500)
committersbkelley <sb24kelley@gmail.com>
Tue, 2 Dec 2025 05:54:56 +0000 (00:54 -0500)
src/obs_ctl/log.py

index 31d9d66320d915fcdf869d95ba09817750f10a54..c93c788c90b2bc650de35c3b4b1395e437ff10f1 100644 (file)
@@ -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")