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