Skip to content

Commit

Permalink
added noisy argument to scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
F483 committed Jan 23, 2016
1 parent 954c2ef commit 6e618d6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/bootstrap_nodes_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def parse_args():
parser.add_argument('--debug', action='store_true')
parser.add_argument('--verbose', action='store_true')
parser.add_argument('--quiet', action='store_true')
parser.add_argument('--noisy', action='store_true')
return vars(parser.parse_args())


Expand Down
1 change: 1 addition & 0 deletions scripts/collect_monitor_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def parse_args():
parser = argparse.ArgumentParser(description=description)
parser.add_argument('--debug', action='store_true')
parser.add_argument('--verbose', action='store_true')
parser.add_argument('--noisy', action='store_true')
parser.add_argument('--quiet', action='store_true')
return vars(parser.parse_args())

Expand Down
1 change: 1 addition & 0 deletions scripts/map_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def _parse_args(args):
parser.add_argument('--debug', action='store_true')
parser.add_argument('--quiet', action='store_true')
parser.add_argument('--verbose', action='store_true')
parser.add_argument('--noisy', action='store_true')
parser.add_argument('--render', action='store_true',
help="Render graph (requires pygraphviz).")
parser.add_argument("--path", default=None,
Expand Down
1 change: 1 addition & 0 deletions scripts/start_bootstrap_only_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def parse_args():
parser.add_argument('--debug', action='store_true')
parser.add_argument('--verbose', action='store_true')
parser.add_argument('--quiet', action='store_true')
parser.add_argument('--noisy', action='store_true')
parser.add_argument("--port", type=int, help="UDP port to listen on.")
parser.add_argument('--testgroupb', action='store_true',
help="Node for testgroupb.")
Expand Down

0 comments on commit 6e618d6

Please sign in to comment.