Skip to content

Commit ec678aa

Browse files
committed
revert debug logs
1 parent 2b71d13 commit ec678aa

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

axiom/nr_txn.c

-3
Original file line numberDiff line numberDiff line change
@@ -3242,17 +3242,14 @@ char* nr_txn_get_current_trace_id(nrtxn_t* txn) {
32423242
const char* trace_id;
32433243

32443244
if (NULL == txn) {
3245-
nrl_debug(NRL_AGENT, "%s", "nr_txn_get_current_trace_id : txn is NULL");
32463245
return NULL;
32473246
}
32483247

32493248
trace_id = nr_distributed_trace_get_trace_id(txn->distributed_trace);
3250-
nrl_debug(NRL_AGENT, "nr_distributed_trace_get_trace_id : %s", trace_id);
32513249

32523250
if ((NULL == trace_id) || (!txn->options.distributed_tracing_enabled)) {
32533251
return NULL;
32543252
}
3255-
nrl_debug(NRL_AGENT, "returning trace_id : %s", trace_id);
32563253
return nr_strdup(trace_id);
32573254
}
32583255

0 commit comments

Comments
 (0)