Do not print stack trace on print errors.
This commit is contained in:
parent
084b0e8e6c
commit
942bbfa1fe
1 changed files with 1 additions and 1 deletions
|
@ -737,7 +737,7 @@ public final class RhinoCore {
|
||||||
cx.evaluateReader(op, reader, sourceName, firstline, null);
|
cx.evaluateReader(op, reader, sourceName, firstline, null);
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
app.logEvent("Error parsing function file " + sourceName + ": " + e);
|
app.logEvent("Error parsing function file " + sourceName + ": " + e);
|
||||||
e.printStackTrace();
|
// e.printStackTrace();
|
||||||
} finally {
|
} finally {
|
||||||
if (reader != null) {
|
if (reader != null) {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Add table
Reference in a new issue