|
From: Carlos Q. <car...@we...> - 2001-09-29 21:53:27
|
Hi
I noticed that some messages like *sys-package-mgr*: processing new jar and
certain exceptions are being reported directly in the Py class at the line
1586 in the maybeWrite function as
public static void maybeWrite(String type, String msg, int level) {
if (level <= Options.verbose) {
System.err.println(type+": "+msg);
}
}
However this behavior creates some problems since some exceptions are not
reported in the interpreter to the err output stream. I don't see any way to
modify this behavior so to get those exception reported to the right place.
Is this a design feature or bug? Is it going to be changed?
Regards
|