another new is to small
[enigma2.git] / lib / base / eerror.cpp
index af78040634f2fa1ea6322c9f20dd4fdf6468db5f..3239ddc54023450b96314c78d63031146573ab2a 100644 (file)
@@ -29,7 +29,7 @@ void eFatal(const char* fmt, ...)
        vsnprintf(buf, 1024, fmt, ap);
        va_end(ap);
        logOutput(lvlFatal, buf);
-       fprintf(stderr, "%s\n",buf );
+       fprintf(stderr, "FATAL: %s\n",buf );
 #if 0
        if (!infatal)
        {
@@ -80,3 +80,15 @@ void eWarning(const char* fmt, ...)
                fprintf(stderr, "%s\n", buf);
 }
 #endif // DEBUG
+
+void ePythonOutput(const char *string)
+{
+       logOutput(lvlWarning, string);
+       if (logOutputConsole)
+               fwrite(string, 1, strlen(string), stderr);
+}
+
+void eWriteCrashdump()
+{
+               /* implement me */
+}