* Use Application.logError() instead of System.err.println().

This commit is contained in:
hns 2007-05-03 14:21:16 +00:00
parent 083422891f
commit 72db2bf08e

View file

@ -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);
}
}