Skip to content

Commit fb5fd97

Browse files
committed
revert debug logs
1 parent 89b0bd0 commit fb5fd97

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

axiom/nr_txn.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3259,17 +3259,14 @@ char* nr_txn_get_current_trace_id(nrtxn_t* txn) {
32593259
const char* trace_id;
32603260

32613261
if (NULL == txn) {
3262-
nrl_debug(NRL_AGENT, "%s", "nr_txn_get_current_trace_id : txn is NULL");
32633262
return NULL;
32643263
}
32653264

32663265
trace_id = nr_distributed_trace_get_trace_id(txn->distributed_trace);
3267-
nrl_debug(NRL_AGENT, "nr_distributed_trace_get_trace_id : %s", trace_id);
32683266

32693267
if ((NULL == trace_id) || (!txn->options.distributed_tracing_enabled)) {
32703268
return NULL;
32713269
}
3272-
nrl_debug(NRL_AGENT, "returning trace_id : %s", trace_id);
32733270
return nr_strdup(trace_id);
32743271
}
32753272

0 commit comments

Comments
 (0)