pipe python stdout trough enigma
[enigma2.git] / lib / base / eerror.cpp
index c60d5b7bd769cbec15c274e2c5aee02c5c7b0524..3239ddc54023450b96314c78d63031146573ab2a 100644 (file)
@@ -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 */
+}