Skip to content

Commit c16394a

Browse files
Remove duplicative FINEST-level error logging in GrpcExporter (#8216)
1 parent 9a992c2 commit c16394a

File tree

1 file changed

+1
-1
lines changed
  • exporters/common/src/main/java/io/opentelemetry/exporter/internal/grpc

1 file changed

+1
-1
lines changed

exporters/common/src/main/java/io/opentelemetry/exporter/internal/grpc/GrpcExporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ private void onError(
133133
+ e.getMessage(),
134134
e);
135135
if (logger.isLoggable(Level.FINEST)) {
136-
logger.log(Level.FINEST, "Failed to export " + type + "s. Details follow: " + e);
136+
logger.log(Level.FINEST, "Failed to export " + type + "s. Details follow:", e);
137137
}
138138
result.failExceptionally(FailedExportException.grpcFailedExceptionally(e));
139139
}

0 commit comments

Comments
 (0)