MCPcopy Create free account
hub / github.com/apple/foundationdb / printLogFiles

Function printLogFiles

fdbbackup/FileDecoder.actor.cpp:335–341  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

333}
334
335void printLogFiles(std::string msg, const std::vector<LogFile>& files) {
336 std::cout << msg << " " << files.size() << " log files\n";
337 for (const auto& file : files) {
338 std::cout << file.toString() << "\n";
339 }
340 std::cout << std::endl;
341}
342
343std::vector<LogFile> getRelevantLogFiles(const std::vector<LogFile>& files, const DecodeParams& params) {
344 std::vector<LogFile> filtered;

Callers 1

Future<Void> decode_logsFunction · 0.70

Calls 2

sizeMethod · 0.45
toStringMethod · 0.45

Tested by

no test coverage detected