Skip to content
Permalink
Browse files
fix: add missing spaces in opentelemetry log message (#360)
Currently this log message renders like this:

```
This service is instrumented using OpenTelemetry.OpenTelemetry could not be imported; pleaseadd opentelemetry-api and opentelemetry-instrumentationpackages in order to get BigQuery Tracing data.
```

where it should be
```
This service is instrumented using OpenTelemetry. OpenTelemetry could not be imported; please add opentelemetry-api and opentelemetry-instrumentation packages in order to get BigQuery Tracing data."
```
  • Loading branch information
rickard-von-essen committed Nov 3, 2020
1 parent 284e17a commit 4f326b1
Showing 1 changed file with 3 additions and 3 deletions.
@@ -26,9 +26,9 @@

except ImportError:
logger.info(
"This service is instrumented using OpenTelemetry."
"OpenTelemetry could not be imported; please"
"add opentelemetry-api and opentelemetry-instrumentation"
"This service is instrumented using OpenTelemetry. "
"OpenTelemetry could not be imported; please "
"add opentelemetry-api and opentelemetry-instrumentation "
"packages in order to get BigQuery Tracing data."
)

0 comments on commit 4f326b1

Please sign in to comment.