Skip to content

Commit

Permalink
Fix invalid log format
Browse files Browse the repository at this point in the history
  • Loading branch information
hoyon authored Sep 23, 2024
1 parent 61ecf5d commit bda6844
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions apps/opentelemetry/src/otel_exporter.erl
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,7 @@ init({ExporterModule, Config}) when is_atom(ExporterModule) ->
end;
{error, undef} when ExporterModule =:= opentelemetry_exporter ->
?LOG_WARNING("OTLP exporter module `opentelemetry_exporter` not found. "
"Verify you have included the `opentelemetry_exporter` dependency.",
[ExporterModule]),
"Verify you have included the `opentelemetry_exporter` dependency."),

Check warning on line 100 in apps/opentelemetry/src/otel_exporter.erl

View check run for this annotation

Codecov / codecov/patch

apps/opentelemetry/src/otel_exporter.erl#L100

Added line #L100 was not covered by tests
undefined;
{error, undef} ->
?LOG_WARNING("Exporter module ~tp not found. Verify you have included "
Expand Down

0 comments on commit bda6844

Please sign in to comment.