- From: Yves Lafon <ylafon@w3.org>
- Date: Tue, 18 Mar 2003 22:54:22 +0100 (MET)
- To: "Laird, Brian" <BLaird@perseco.com>
- cc: www-jigsaw@w3.org
On Mon, 17 Mar 2003, Laird, Brian wrote:
>
> What is the recommended way of logging within custom built filters (ex:
> error logging)? Is there an easy way to get a hook to the current
> logger?
From LogFilter:
FramedResource target = (FramedResource) getTargetResource();
if (target != null) {
String msg = ("IO error while writing to log file \""+
ex.getMessage() + "\".");
target.getServer().errlog(this, msg);
}
You can get the Logger object with target.getServer().getLogger() and then
use the usual method on it.
Thanks,
--
Yves Lafon - W3C
"Baroula que barouleras, au tiéu toujou t'entourneras."
Received on Tuesday, 18 March 2003 16:54:26 UTC