PyXPCOM_LogError should always write the error message, even if there is

no traceback or exception info.
Not part of the build.
This commit is contained in:
mhammond%skippinet.com.au 2006-04-11 06:04:23 +00:00
Родитель 35b21b43d3
Коммит e7c870d4eb
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -215,9 +215,8 @@ PYXPCOM_EXPORT void PyXPCOM_LogError(const char *fmt, ...)
PR_vsnprintf(buff, sizeof(buff), fmt, marker);
// If we have a Python exception, also log that:
nsCAutoString streamout(buff);
if (PyXPCOM_FormatCurrentException(streamout)) {
LogMessage(LOGGER_ERROR, streamout);
}
PyXPCOM_FormatCurrentException(streamout);
LogMessage(LOGGER_ERROR, streamout);
}
PYXPCOM_EXPORT void PyXPCOM_LogWarning(const char *fmt, ...)