Skip to content

Commit ff97464

Browse files
committed
spot
1 parent 99d6cf2 commit ff97464

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

exporters/otlp/common/src/main/java/io/opentelemetry/exporter/internal/otlp/logs/LogStatelessMarshaler.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ public void writeTo(Serializer output, LogRecordData log, MarshalerContext conte
5959
int droppedAttributesCount;
6060
if (INCUBATOR_AVAILABLE) {
6161
IncubatingUtil.serializeExtendedAttributes(output, log, context);
62-
droppedAttributesCount = log.getTotalAttributeCount() - IncubatingUtil.extendedAttributesSize(log);
62+
droppedAttributesCount =
63+
log.getTotalAttributeCount() - IncubatingUtil.extendedAttributesSize(log);
6364
} else {
6465
output.serializeRepeatedMessageWithContext(
6566
LogRecord.ATTRIBUTES,

0 commit comments

Comments
 (0)