Do not print stack trace on print errors.

This commit is contained in:
hns 2003-06-26 16:52:26 +00:00
parent 084b0e8e6c
commit 942bbfa1fe

View file

@ -737,7 +737,7 @@ public final class RhinoCore {
cx.evaluateReader(op, reader, sourceName, firstline, null);
} catch (Throwable e) {
app.logEvent("Error parsing function file " + sourceName + ": " + e);
e.printStackTrace();
// e.printStackTrace();
} finally {
if (reader != null) {
try {