Skip to content

Commit b73d3cc

Browse files
committed
Change logging message from INFO to DEBUG level
1 parent 5c11d1b commit b73d3cc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rawtools/log.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ def configure(args):
2323
if args.module_name is not None:
2424
logfile_basename = f"{dt.today().strftime('%Y-%m-%d_%H-%M-%S')}_{args.module_name}.log"
2525
rpath = os.path.realpath(args.path[0])
26-
logging.info(f"{rpath=}")
26+
logging.debug(f"{rpath=}")
2727
if os.path.isdir(rpath):
2828
dname = rpath
2929
else:
3030
dname = os.path.dirname(rpath)
31-
logging.info(f"{dname=}")
31+
logging.debug(f"{dname=}")
3232
lfp = os.path.join(dname, logfile_basename) # base log file path
33-
logging.info(f"{lfp=}")
33+
logging.debug(f"{lfp=}")
3434
fileHandler = logging.FileHandler(lfp)
3535
fileHandler.setFormatter(logFormatter)
3636
fileHandler.setLevel(logging.DEBUG) # always show debug statements in log file

0 commit comments

Comments
 (0)