| 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 |
no test coverage detected