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

Function msWriteError

maperror.c:350–360  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

348}
349
350void msWriteError(FILE *stream)
351{
352 errorObj *ms_error = msGetErrorObj();
353
354 while (ms_error && ms_error->code != MS_NOERR)
355 {
356 msIO_fprintf(stream, "%s: %s %s <br>\n", ms_error->routine, ms_errorCodes[ms_error->code], ms_error->message);
357 ms_error->isreported = MS_TRUE;
358 ms_error = ms_error->next;
359 }
360}
361
362void msWriteErrorXML(FILE *stream)
363{

Callers 7

writeLogFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85

Calls 2

msGetErrorObjFunction · 0.85
msIO_fprintfFunction · 0.85

Tested by 1

mainFunction · 0.68