X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=libust%2Ftracectl.c;h=277dbcd75d773f31f9c19f1056d49715d7dfabde;hb=1767488580719803a824d07e6662381df81328d7;hp=1ee3e45ad8bec3830567f4540022ca4a7568f727;hpb=9160b4e4541d3a6010e4e671ee5deb3ea89f4211;p=lttng-ust.git diff --git a/libust/tracectl.c b/libust/tracectl.c index 1ee3e45a..277dbcd7 100644 --- a/libust/tracectl.c +++ b/libust/tracectl.c @@ -777,8 +777,8 @@ static void auto_probe_connect(struct marker *m) int result; result = ltt_marker_connect(m->channel, m->name, "default"); - if(result) - ERR("ltt_marker_connect"); + if(result && result != -EEXIST) + ERR("ltt_marker_connect (marker = %s/%s, errno = %d)", m->channel, m->name, -result); DBG("just auto connected marker %s %s to probe default", m->channel, m->name); }