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

Function log_error

include/aws/logging/logging.h:30–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28void log(verbosity v, char const* tag, char const* msg, va_list args);
29
30[[gnu::format(printf, 2, 3)]] inline void log_error(char const* tag, char const* msg, ...)
31{
32 va_list args;
33 va_start(args, msg);
34 log(verbosity::error, tag, msg, args);
35 va_end(args);
36 (void)tag;
37 (void)msg;
38}
39
40[[gnu::format(printf, 2, 3)]] inline void log_info(char const* tag, char const* msg, ...)
41{

Callers 6

runtimeMethod · 0.85
get_nextMethod · 0.85
do_postMethod · 0.85
handle_post_outcomeFunction · 0.85
run_handlerFunction · 0.85
mainFunction · 0.85

Calls 1

logFunction · 0.85

Tested by

no test coverage detected