laforge has uploaded this change for review. ( https://gerrit.osmocom.org/c/pysim/+/37833?usp=email )
Change subject: saip-tool: Set default log level to INFO (instead of DEBUG) ......................................................................
saip-tool: Set default log level to INFO (instead of DEBUG)
most users don't want to debug the program.
Change-Id: I54ae558cf8d87bf64cc75431cc4edcc694fa9084 --- M contrib/saip-tool.py 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/pysim refs/changes/33/37833/1
diff --git a/contrib/saip-tool.py b/contrib/saip-tool.py index d9d33c0..22b913e 100755 --- a/contrib/saip-tool.py +++ b/contrib/saip-tool.py @@ -31,7 +31,7 @@
pp = HexBytesPrettyPrinter(indent=4,width=500)
-logging.basicConfig(level=logging.DEBUG) +logging.basicConfig(level=logging.INFO)
parser = argparse.ArgumentParser(description=""" Utility program to work with eSIM SAIP (SimAlliance Interoperable Profile) files.""")