X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fecrash.c;fp=citadel%2Fecrash.c;h=ea75ea1cd65aa1da4c7b2126b3216b06bd28c00b;hb=e46bae0c95eb79ce9dc2119ff58ae5ad498d2d52;hp=f93742a71fd137006f6b76aa99bca0ea50b2e5a5;hpb=f73ec44ea6fb12fe23b7a021993dff8a28cbe0f7;p=citadel.git diff --git a/citadel/ecrash.c b/citadel/ecrash.c index f93742a71..ea75ea1cd 100644 --- a/citadel/ecrash.c +++ b/citadel/ecrash.c @@ -216,7 +216,7 @@ static void createGlobalBacktrace( void ) } else for (NThread = 0; NThread < size; NThread++) - CtdlLogPrintf(1, "RAW: %p\n", stack_frames[NThread]); + CtdlLogPrintf(CTDL_ALERT, "RAW: %p\n", stack_frames[NThread]); strings = backtrace_symbols(stack_frames, size); for (NThread = 0; NThread < size; NThread++) { if (strings != NULL) { @@ -226,7 +226,7 @@ static void createGlobalBacktrace( void ) syslog( LOG_CRIT|LOG_NDELAY|LOG_MAIL, StaticBuf); } else - CtdlLogPrintf(1, "%s\n", strings[NThread]); + CtdlLogPrintf(CTDL_ALERT, "%s\n", strings[NThread]); } } } /* createGlobalBacktrace */ @@ -242,7 +242,7 @@ static void outputRawtrace( void ) } else for (NThread = 0; NThread < size; NThread++) - CtdlLogPrintf(1, "RAW: %p\n", stack_frames[NThread]); + CtdlLogPrintf(CTDL_ALERT, "RAW: %p\n", stack_frames[NThread]); } /* createGlobalBacktrace */ /*!