/
| 145 | |
| 146 | /*****************************************************************************/ |
| 147 | void proj_log_debug(PJ *P, const char *fmt, ...) { |
| 148 | /****************************************************************************** |
| 149 | For reporting debugging information. |
| 150 | ******************************************************************************/ |
| 151 | va_list args; |
| 152 | va_start(args, fmt); |
| 153 | pj_vlog(pj_get_ctx(P), PJ_LOG_DEBUG, P, fmt, args); |
| 154 | va_end(args); |
| 155 | } |
| 156 | |
| 157 | /*****************************************************************************/ |
| 158 | void proj_context_log_debug(PJ_CONTEXT *ctx, const char *fmt, ...) { |
no test coverage detected