Skip to content

Commit 4a6fec8

Browse files
committed
refactor(http_exporter): add empty space in logs
1 parent d1b9083 commit 4a6fec8

File tree

3 files changed

+3
-3
lines changed
  • exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http

3 files changed

+3
-3
lines changed

exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http/_log_exporter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def export(
215215
or self._shutdown
216216
):
217217
_logger.error(
218-
"Failed to export logs batch due to timeout,"
218+
"Failed to export logs batch due to timeout, "
219219
"max retries or shutdown."
220220
)
221221
return LogRecordExportResult.FAILURE

exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http/metric_exporter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def export(
259259
or self._shutdown
260260
):
261261
_logger.error(
262-
"Failed to export metrics batch due to timeout,"
262+
"Failed to export metrics batch due to timeout, "
263263
"max retries or shutdown."
264264
)
265265
return MetricExportResult.FAILURE

exporter/opentelemetry-exporter-otlp-proto-http/src/opentelemetry/exporter/otlp/proto/http/trace_exporter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def export(self, spans: Sequence[ReadableSpan]) -> SpanExportResult:
208208
or self._shutdown
209209
):
210210
_logger.error(
211-
"Failed to export span batch due to timeout,"
211+
"Failed to export span batch due to timeout, "
212212
"max retries or shutdown."
213213
)
214214
return SpanExportResult.FAILURE

0 commit comments

Comments
 (0)