Hacktoberfest 2026: những issue maintainer đã đánh dấu cho tháng Mười, đang mở và phù hợp người mới. Xem issue Hacktoberfest

Excessive INFO logging from ConfigurationUpdater after latest deployment

Đang mở
#9,508 9 bình luận 1 reaction 1 người được giao Xem trên GitHub

@jpbempel đang làm issue này rồi.

Từ ngày 22/9/2025.

Đánh giá

Issue này chưa được đánh giá.

Mô tả

comp: debugger type: bug report
Tracer Version(s)

1.53.0

Java Version(s)

21.0.8

JVM Vendor

Amazon Corretto

Bug Report

Title: Excessive INFO logging from ConfigurationUpdater after latest deployment

Description
After our latest deployment, we’ve observed an excessive amount of INFO logs coming from com.datadog.debugger.agent.ConfigurationUpdater. These logs appear to contain what should likely be DEBUG-level information.

Example logs:

[dd.trace 2025-09-10 13:40:36:595 +0000] [dd-task-scheduler] INFO com.datadog.debugger.agent.ConfigurationUpdater - Re-transforming class: ar.com.glamit.spring.configurations.config.ConfigurationCreatorConfig

[dd.trace 2025-09-10 13:40:36:730 +0000] [dd-task-scheduler] INFO com.datadog.debugger.agent.ConfigurationUpdater - Applying new probe configuration, changes: ConfigurationComparer{addedDefinitions=1, removedDefinitions=0, filteredListChanged=false, changedBlockedTypes=0}

Impact
These INFO logs are displayed as ERROR in the Datadog Web UI, creating noise and confusion for users monitoring logs.

Suspected cause
Upon reviewing the agent code, the logging level seems incorrectly set to INFO instead of DEBUG:

private void retransformClasses(List<Class<?>> classesToBeTransformed) {
  for (Class<?> clazz : classesToBeTransformed) {
    try {
      LOGGER.info("Re-transforming class: {}", clazz.getTypeName());
      instrumentation.retransformClasses(clazz);
    } catch (Exception ex) {
      ExceptionHelper.logException(LOGGER, ex, "Re-transform error:");
    } catch (Throwable ex) {
      ExceptionHelper.logException(LOGGER, ex, "Re-transform throwable:");
    }
  }
}

Expected behavior
These messages should likely be logged at the DEBUG level (or possibly TRACE), as they represent internal instrumentation details rather than actionable operational events.

Expected Behavior

Please confirm whether this logging level is intentional, and if not, consider adjusting it to reduce noise in production environments.

Reproduction Code

No response

Ngôn ngữ chính
Java
Star
737
Fork
361
Merge trung bình
3 ngày 20 giờ
Pull request đã merge (30 ngày)
173

Hướng dẫn đóng góp

Mở hướng dẫn đóng góp

Bắt đầu từ đâu

  1. Đọc hết issue, rồi đọc hướng dẫn đóng góp của dự án.
  2. Bình luận trên issue rằng bạn sẽ nhận — tránh hai người làm cùng một việc.
  3. Fork repository và làm thay đổi trên một nhánh.
  4. Mở pull request có tham chiếu số hiệu của issue.

Issue khác của DataDog/dd-trace-java

Tất cả issue của DataDog/dd-trace-java

Issue tương tự

Thêm issue về Java

Nhận issue mới trong hộp thư của bạn

Bản tóm tắt ngắn những issue GitHub phù hợp với người mới.