MCPcopy Create free account
hub / github.com/Snapchat/Valdi / verboseLogsToString

Method verboseLogsToString

valdi/src/valdi/runtime/Utils/DumpedLogs.cpp:58–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58std::string DumpedLogs::verboseLogsToString() const {
59 std::string output;
60
61 auto first = true;
62 for (const auto& verboseLogs : getVerbose()) {
63 if (!first) {
64 output += "\n\n";
65 }
66 first = false;
67 output += verboseLogs.name.toStringView();
68 output += ":";
69 output += verboseLogs.data.toString(true);
70 }
71
72 return output;
73}
74
75} // namespace Valdi

Callers 2

dumpLogsMethod · 0.80
dumpVerboseLogsMethod · 0.80

Calls 2

toStringMethod · 0.65
toStringViewMethod · 0.45

Tested by

no test coverage detected