MCPcopy Index your code
hub / github.com/MapServer/MapServer / msSetGlobalDebugLevel

Function msSetGlobalDebugLevel

mapdebug.c:258–264  ·  view source on GitHub ↗

Set/Get the current global debug level value, used as default value for ** new map and layer objects and to control msDebug() calls outside of ** the context of mapObj or layerObj. ** */

Source from the content-addressed store, hash-verified

256**
257*/
258void msSetGlobalDebugLevel(int level)
259{
260 debugInfoObj *debuginfo = msGetDebugInfoObj();
261
262 if (debuginfo)
263 debuginfo->global_debug_level = (debugLevel)level;
264}
265
266debugLevel msGetGlobalDebugLevel()
267{

Callers 3

ifFunction · 0.85
mainFunction · 0.85
msDebugInitFromEnvFunction · 0.85

Calls 1

msGetDebugInfoObjFunction · 0.85

Tested by

no test coverage detected