From c85493b547d63404ec4c3280b2404b13b92892d0 Mon Sep 17 00:00:00 2001 From: Marek Gradzki Date: Tue, 21 Aug 2018 10:31:47 +0200 Subject: examples: add verbose option to ncclient scripts Change-Id: I42f1efed55072ec9885dda2a9dcd3c8d85980d8f Signed-off-by: Marek Gradzki --- examples/ncclient/copy_config.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'examples/ncclient/copy_config.py') diff --git a/examples/ncclient/copy_config.py b/examples/ncclient/copy_config.py index e2e95c6c2..227acb128 100755 --- a/examples/ncclient/copy_config.py +++ b/examples/ncclient/copy_config.py @@ -31,9 +31,15 @@ def _copy_config(config_filename, host='localhost', port=2831, username='admin', if __name__ == '__main__': - logger = logging.getLogger("hc2vpp.examples.copy_config") - logging.basicConfig(level=logging.WARNING) argparser = argparse.ArgumentParser(description="Configures VPP using RPC") argparser.add_argument('config_filename', help="name of XML file with element") + argparser.add_argument('--verbose', help="increase output verbosity", action="store_true") args = argparser.parse_args() + + logger = logging.getLogger("hc2vpp.examples.copy_config") + if args.verbose: + logging.basicConfig(level=logging.DEBUG) + else: + logging.basicConfig(level=logging.WARNING) + _copy_config(args.config_filename) -- cgit 1.2.3-korg