File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
dd-java-agent/agent-debugger/src/main/java/com/datadog/debugger/agent Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -242,20 +242,20 @@ public static void startCodeOriginForSpans() {
242242 if (!codeOriginEnabled .compareAndSet (false , true )) {
243243 return ;
244244 }
245- LOGGER .info ("Starting Code Origin for spans" );
245+ LOGGER .debug ("Starting Code Origin for spans" );
246246 Config config = Config .get ();
247247 commonInit (config );
248248 initClassNameFilter ();
249249 DebuggerContext .initClassNameFilter (classNameFilter );
250250 DebuggerContext .initCodeOrigin (new DefaultCodeOriginRecorder (config , configurationUpdater ));
251- LOGGER .info ("Started Code Origin for spans" );
251+ LOGGER .debug ("Started Code Origin for spans" );
252252 }
253253
254254 public static void stopCodeOriginForSpans () {
255255 if (!codeOriginEnabled .compareAndSet (true , false )) {
256256 return ;
257257 }
258- LOGGER .info ("Stopping Code Origin for spans" );
258+ LOGGER .debug ("Stopping Code Origin for spans" );
259259 if (configurationUpdater != null ) {
260260 // uninstall all code origin probes by providing empty configuration
261261 configurationUpdater .accept (CODE_ORIGIN , Collections .emptyList ());
You can’t perform that action at this time.
0 commit comments