add log and output cli-args
This commit is contained in:
parent
9c0ebc18ed
commit
2b9e9d0911
|
@ -21,6 +21,13 @@ def cli():
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--idmap', type=str, help='path to id_map', default='id_map.json'
|
'--idmap', type=str, help='path to id_map', default='id_map.json'
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'--log', type=str, help='path to your logfile(s)'
|
||||||
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
'--output', type=str, help='path to the output-file',
|
||||||
|
default='stats.html'
|
||||||
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
'--debug', help='debug mode', action='store_true'
|
'--debug', help='debug mode', action='store_true'
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue