We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8e0afe commit 3a7ac58Copy full SHA for 3a7ac58
opentelemetry-auto-instrumentation/src/opentelemetry/auto_instrumentation/instrumentor.py
@@ -52,9 +52,7 @@ def instrument(self, **kwargs):
52
self._is_instrumented = True
53
return result
54
55
- _LOG.warning(
56
- "Attempting to automatically instrument while already instrumented"
57
- )
+ _LOG.warning("Attempting to instrument while already instrumented")
58
59
return None
60
@@ -66,10 +64,7 @@ def uninstrument(self, **kwargs):
66
64
self._is_instrumented = False
67
65
68
69
70
- "Attempting to automatically uninstrument while already"
71
- " uninstrumented"
72
+ _LOG.warning("Attempting to uninstrument while already uninstrumented")
73
74
75
0 commit comments