saip-tool: Set default log level to INFO (instead of DEBUG)

most users don't want to debug the program.

Change-Id: I54ae558cf8d87bf64cc75431cc4edcc694fa9084
This commit is contained in:
Harald Welte
2024-08-16 17:23:31 +02:00
parent 97dfcaa9c7
commit 1f477495ec

View File

@@ -31,7 +31,7 @@ from pySim.pprint import HexBytesPrettyPrinter
pp = HexBytesPrettyPrinter(indent=4,width=500) pp = HexBytesPrettyPrinter(indent=4,width=500)
logging.basicConfig(level=logging.DEBUG) logging.basicConfig(level=logging.INFO)
parser = argparse.ArgumentParser(description=""" parser = argparse.ArgumentParser(description="""
Utility program to work with eSIM SAIP (SimAlliance Interoperable Profile) files.""") Utility program to work with eSIM SAIP (SimAlliance Interoperable Profile) files.""")