Skip to content

Commit c44186c

Browse files
do not log name "mod_appdynamics" (#214)
* do not log name "mod_appdynamics" Change Logoutput to "mod_opentelemetry_wbserver_sdk" * Typo mod_opentelemetry_wbserver_sdk => mod_opentelemetry_webserver_sdk
1 parent 786c3ad commit c44186c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

instrumentation/otel-webserver-module/src/apache/ApacheTracing.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ void ApacheTracing::writeTrace(server_rec* s, const char* funcName, const char*
4747

4848
if (m_state == TRACE_AS_ERROR && s)
4949
{
50-
ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, "mod_appdynamics: %s: %s", funcName, note);
50+
ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, "mod_opentelemetry_webserver_sdk: %s: %s", funcName, note);
5151
}
5252
else if (m_state == UNINITIALIZED)
5353
{
@@ -69,7 +69,7 @@ void ApacheTracing::writeError(server_rec* s, const char* funcName, const char*
6969

7070
if (s && funcName)
7171
{
72-
ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, "mod_appdynamics: %s: %s", funcName, note);
72+
ap_log_error(APLOG_MARK, APLOG_ERR, 0, s, "mod_opentelemetry_webserver_sdk: %s: %s", funcName, note);
7373
}
7474
}
7575

0 commit comments

Comments
 (0)