/
| 156 | |
| 157 | /*****************************************************************************/ |
| 158 | void proj_context_log_debug(PJ_CONTEXT *ctx, const char *fmt, ...) { |
| 159 | /****************************************************************************** |
| 160 | For reporting debugging information. |
| 161 | ******************************************************************************/ |
| 162 | va_list args; |
| 163 | va_start(args, fmt); |
| 164 | pj_vlog(ctx, PJ_LOG_DEBUG, nullptr, fmt, args); |
| 165 | va_end(args); |
| 166 | } |
| 167 | |
| 168 | /*****************************************************************************/ |
| 169 | void proj_log_trace(PJ *P, const char *fmt, ...) { |
no test coverage detected