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

Function pj_log

src/log.cpp:104–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102/************************************************************************/
103
104void pj_log(PJ_CONTEXT *ctx, int level, const char *fmt, ...)
105
106{
107 va_list args;
108
109 if (level > ctx->debug_level)
110 return;
111
112 va_start(args, fmt);
113 pj_vlog(ctx, level, nullptr, fmt, args);
114 va_end(args);
115}
116
117/***************************************************************************************/
118PJ_LOG_LEVEL proj_log_level(PJ_CONTEXT *ctx, PJ_LOG_LEVEL log_level) {

Callers 15

openMethod · 0.85
valueAtMethod · 0.85
valuesAtMethod · 0.85
nextGridMethod · 0.85
reopenMethod · 0.85
insertIntoHierarchyFunction · 0.85
insertGridMethod · 0.85
reopenMethod · 0.85
reopenMethod · 0.85
reopenMethod · 0.85
pj_hgrid_apply_internalFunction · 0.85
pj_hgrid_valueFunction · 0.85

Calls 1

pj_vlogFunction · 0.85

Tested by

no test coverage detected