MCPcopy Create free account
hub / github.com/OSGeo/PROJ / proj_log_debug

Function proj_log_debug

src/log.cpp:147–155  ·  view source on GitHub ↗

/

Source from the content-addressed store, hash-verified

145
146/*****************************************************************************/
147void 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/*****************************************************************************/
158void proj_context_log_debug(PJ_CONTEXT *ctx, const char *fmt, ...) {

Calls 2

pj_vlogFunction · 0.85
pj_get_ctxFunction · 0.85

Tested by

no test coverage detected