You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("-d", dest="daemon", action="store_true", help="Daemon mode, no logging to console.")
17
17
parser.add_argument("--logdir", default=None, help="Folder where logfiles should be stored.")
18
18
parser.add_argument("--colorlog", default=False, type=arg_str2bool, help="Color logs for terminal output.")
19
-
parser.add_argument("--rotate-count", default=0, type=int, help="Enable log rotation, keep so many old log files. If 0, log rotation is disabled.")
20
-
parser.add_argument("--rotate-unit", default="W6", type=str, help="When log rotation is enabled, select this time unit ('S':secs, 'M':mins, 'H':hours, 'D':days, 'W0'-'W6':weekday, 'midnight')")
21
-
parser.add_argument("--rotate-interval", default="1", type=int, help="When log rotation is enabled, allow this many time units to elapse before doing the rotation (not used when weekday rotation is selected)")
19
+
parser.add_argument("--rotate_count", default=0, type=int, help="Enable log rotation, keep so many old log files. If 0, log rotation is disabled.")
20
+
parser.add_argument("--rotate_unit", default="W6", type=str, help="When log rotation is enabled, select this time unit ('S':secs, 'M':mins, 'H':hours, 'D':days, 'W0'-'W6':weekday, 'midnight')")
21
+
parser.add_argument("--rotate_interval", default="1", type=int, help="When log rotation is enabled, allow this many time units to elapse before doing the rotation (not used when weekday rotation is selected)")
0 commit comments