improve output of list of existing traces

This commit is contained in:
Mathieu Lacage
2007-08-29 14:41:21 +02:00
parent ec3c5c7774
commit cd40e70901

View File

@@ -104,19 +104,19 @@ TraceResolver::SourceCollection::Print (std::ostream &os) const
i->context.PrintAvailable (os, ",");
os << "]" << std::endl;
os << "help=\"" << i->doc.GetHelp () << "\"" << std::endl;
os << "argument 0 -- the trace context associated to the connected trace source." << std::endl;
uint32_t k = 2;
for (TraceDoc::Iterator j = i->doc.ArgsBegin (); j != i->doc.ArgsEnd (); j++)
{
os << "argument " << k << " -- " << j->second << "." << std::endl;
k++;
}
os << "void TraceSinkCallback (const TraceContext &";
for (TraceDoc::Iterator k = i->doc.ArgsBegin (); k != i->doc.ArgsEnd (); k++)
{
os << ", " << k->first;
}
os << ")" << std::endl;
os << "argument 1 -- the trace context associated to the connected trace source." << std::endl;
uint32_t k = 2;
for (TraceDoc::Iterator j = i->doc.ArgsBegin (); j != i->doc.ArgsEnd (); j++)
{
os << "argument " << k << " -- " << j->second << "." << std::endl;
k++;
}
os << std::endl;
}
}