We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1d1b1a commit ccbcbceCopy full SHA for ccbcbce
src/model_signing/_cli.py
@@ -223,6 +223,7 @@ def resolve_command(
223
),
224
default="INFO",
225
show_default=True,
226
+ metavar="LEVEL",
227
help="Set the logging level. This can also be set via the "
228
"MODEL_SIGNING_LOG_LEVEL env var.",
229
)
@@ -246,7 +247,7 @@ def main(log_level: str) -> None:
246
247
auto_instrumentation.initialize()
248
tracer = trace.get_tracer(__name__)
249
except ImportError:
- logging.info("OpenTelemetry not installed. Tracing is disabled.")
250
+ logging.debug("OpenTelemetry not installed. Tracing is disabled.")
251
tracer = NoOpTracer()
252
except Exception as e:
253
logging.error(
0 commit comments