We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b0bd0 commit fb5fd97Copy full SHA for fb5fd97
axiom/nr_txn.c
@@ -3259,17 +3259,14 @@ char* nr_txn_get_current_trace_id(nrtxn_t* txn) {
3259
const char* trace_id;
3260
3261
if (NULL == txn) {
3262
- nrl_debug(NRL_AGENT, "%s", "nr_txn_get_current_trace_id : txn is NULL");
3263
return NULL;
3264
}
3265
3266
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);
3268
3269
if ((NULL == trace_id) || (!txn->options.distributed_tracing_enabled)) {
3270
3271
3272
- nrl_debug(NRL_AGENT, "returning trace_id : %s", trace_id);
3273
return nr_strdup(trace_id);
3274
3275
0 commit comments