From 1f477495ec534b7e27741b2945123de352a29976 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 16 Aug 2024 17:23:31 +0200 Subject: [PATCH] saip-tool: Set default log level to INFO (instead of DEBUG) most users don't want to debug the program. Change-Id: I54ae558cf8d87bf64cc75431cc4edcc694fa9084 --- contrib/saip-tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/saip-tool.py b/contrib/saip-tool.py index d9d33c0e..22b913e6 100755 --- a/contrib/saip-tool.py +++ b/contrib/saip-tool.py @@ -31,7 +31,7 @@ from pySim.pprint import HexBytesPrettyPrinter 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.""")