diff options
Diffstat (limited to 'test/scenario_test/noseplugin.py')
-rw-r--r-- | test/scenario_test/noseplugin.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/scenario_test/noseplugin.py b/test/scenario_test/noseplugin.py index a0cedb80..1eae95bb 100644 --- a/test/scenario_test/noseplugin.py +++ b/test/scenario_test/noseplugin.py @@ -11,7 +11,8 @@ class OptionParser(Plugin): parser.add_option('--use-local', action="store_true", dest="use_local", default=False) parser.add_option('--exabgp-path', action="store", dest="exabgp_path", default="") parser.add_option('--go-path', action="store", dest="go_path", default="") - parser.add_option('--gobgp-log-debug', action="store_true", dest="gobgp_log_debug", default=False) + parser.add_option('--gobgp-log-level', action="store", + dest="gobgp_log_level", default="info") def configure(self, options, conf): super(OptionParser, self).configure(options, conf) @@ -22,4 +23,4 @@ class OptionParser(Plugin): return def finalize(self, result): - pass
\ No newline at end of file + pass |