<div dir="ltr">Hi,<div><br></div><div>I am having a situation where the same tracepoint should be used with multiple loglevels. </div><div><br></div><div>Say for example, I have a tracepoint called HERE which prints the string "I am here". Consider the following code.</div><div><br></div><div>int *a = (int *)malloc(10);</div><div>if(a) {</div><div>   tracepoint(HERE); // This can be INFO log level</div><div>}</div><div>else {</div><div>   // Malloc failed</div><div>   tracepoint(HERE); // This is critical and needs CRIT log level.</div><div>}</div><div><br></div><div>I am trying not to define multiple tracepoints just for this case. Can we do this with LTTng?</div><div><br></div><div>-- Chid</div></div>