MCPcopy Create free account
hub / github.com/awslabs/aws-lambda-cpp / log_debug

Function log_debug

include/aws/logging/logging.h:53–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51}
52
53[[gnu::format(printf, 2, 3)]] inline void log_debug(char const* tag, char const* msg, ...)
54{
55#if AWS_LAMBDA_LOG >= 2
56 va_list args;
57 va_start(args, msg);
58 log(verbosity::debug, tag, msg, args);
59 va_end(args);
60#else
61 (void)tag;
62 (void)msg;
63#endif
64}
65
66} // namespace logging
67} // namespace aws

Callers 5

write_headerFunction · 0.85
rt_curl_debug_callbackFunction · 0.85
get_nextMethod · 0.85
do_postMethod · 0.85
run_handlerFunction · 0.85

Calls 1

logFunction · 0.85

Tested by

no test coverage detected