File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments