add some debugging for disconnect

This commit is contained in:
Mathieu Lacage
2007-08-12 21:23:55 +02:00
parent 23d17d56e9
commit fcfdb18914

View File

@@ -313,6 +313,7 @@ CompositeTraceResolver::OperationOne (std::string subpath,
(*i)->Connect (subpath, cb, ctx);
} break;
case DISCONNECT:
NS_DEBUG ("disconnect from path="<<subpath<<" name="<<(*i)->name);
(*i)->Disconnect (subpath, cb);
break;
}
@@ -321,6 +322,7 @@ CompositeTraceResolver::OperationOne (std::string subpath,
void
CompositeTraceResolver::Disconnect (std::string path, CallbackBase const &cb)
{
NS_DEBUG ("disconnect path="<<path);
DoRecursiveOperation (path, cb, TraceContext (), DISCONNECT);
}