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

Function logc

flow/TLSTest.cpp:41–46  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

39
40template <class... Args>
41void logc(Args&&... args) {
42 auto buf = fmt::memory_buffer{};
43 fmt::format_to(std::back_inserter(buf), "[CLIENT] ");
44 fmt::format_to(std::back_inserter(buf), std::forward<Args>(args)...);
45 fmt::print(outp, "{}\n", std::string_view(buf.data(), buf.size()));
46}
47
48template <class... Args>
49void logs(Args&&... args) {

Callers 1

runTlsTestFunction · 0.70

Calls 4

format_toFunction · 0.50
printFunction · 0.50
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected