Skip to content

Commit

Permalink
Merge pull request #179 from dgoffredo/typo-log-format
Browse files Browse the repository at this point in the history
fix a copy/paste typo: too many format specifiers
  • Loading branch information
miry authored Aug 4, 2021
2 parents 2d9f40f + 9137d47 commit 111a491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opentracing/src/load_tracer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ngx_int_t load_tracer(ngx_log_t* log, const char* tracer_library,
error_message.c_str());
} else {
ngx_log_error(NGX_LOG_ERR, log, 0,
"Failed to load tracing library %s: %s", tracer_library);
"Failed to load tracing library %s", tracer_library);
}
return NGX_ERROR;
}
Expand Down

0 comments on commit 111a491

Please sign in to comment.