* Use Application.logError() instead of System.err.println().
This commit is contained in:
parent
083422891f
commit
72db2bf08e
1 changed files with 2 additions and 2 deletions
|
@ -445,8 +445,8 @@ public class HopObject extends ScriptableObject implements Wrapper, PropertyReco
|
|||
|
||||
try {
|
||||
((helma.objectmodel.db.Node) node).prefetchChildren(start, length);
|
||||
} catch (Exception ignore) {
|
||||
System.err.println("Error in HopObject.prefetchChildren(): "+ignore);
|
||||
} catch (Exception x) {
|
||||
core.app.logError("Error in HopObject.prefetchChildren: " + x, x);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue