Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static void logNullParam(Class<?> apiClass, String methodName, String par
public static void logUsageIssue(Class<?> apiClass, String methodName, String message) {
if (WARN_ONCE.compareAndSet(false, true)) {
LOGGER.warning(
"OpenTelemetry API usage issue detected. To see more details, enable FINEST logging for io.opentelemetry.usage. Stacktraces are includes to identify the offending call site.");
"OpenTelemetry API usage issue detected. To see more details, enable FINEST logging for io.opentelemetry.usage. Stacktraces are included to identify the offending call site.");
}
if (LOGGER.isLoggable(Level.FINEST)) {
LOGGER.log(
Expand Down
Loading