Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
6 changes: 3 additions & 3 deletions google/cloud/bigquery/opentelemetry_tracing.py
Expand Up @@ -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."
)

Expand Down

0 comments on commit 4f326b1

Please sign in to comment.