diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-12-23 08:18:38 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2011-12-23 08:18:38 +0000 |
commit | 681567b28116421496c4b7560a5b70f9730b8a79 (patch) | |
tree | 527231756f6a291ba35a217e3cd880c2cf15e5e0 /sca-cpp/trunk/modules/js | |
parent | f55fe8a88efb11b57fcb393ce5958e5dcace24d7 (diff) |
Use HTTPD ap_log_error instead of stderr to log when running inside HTTPD, to get log piping and rotation to work.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1222604 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/modules/js')
-rw-r--r-- | sca-cpp/trunk/modules/js/eval.hpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sca-cpp/trunk/modules/js/eval.hpp b/sca-cpp/trunk/modules/js/eval.hpp index 817ef7e086..17f73f2b43 100644 --- a/sca-cpp/trunk/modules/js/eval.hpp +++ b/sca-cpp/trunk/modules/js/eval.hpp @@ -52,13 +52,8 @@ namespace js { * Report Javascript errors. */ void reportError(unused ::JSContext *cx, const char *message, JSErrorReport *report) { -#ifdef WANT_MAINTAINER_MODE - cdebug << (const char*)(report->filename? report->filename : "<no filename>") << ":" - << (int)report->lineno << ":" << message << endl; -#else - cerr << (const char*)(report->filename? report->filename : "<no filename>") << ":" + cfailure << (const char*)(report->filename? report->filename : "<no filename>") << ":" << (int)report->lineno << ":" << message << endl; -#endif } /** |