scraper logging is not really configured well
Status: Beta
Brought to you by:
rbala
this line:
private Logger logger = Logger.getLogger(""+System.currentTimeMillis());
should probably be something more like:
private Logger logger = Logger.getLogger("webharvest."+System.currentTimeMillis());
so you can actually get a grip on it from the logging config. why is it currentTimeMillis anyways?
Anonymous
Diff:
Currently we are working on the new version: 2.1.0rc1 which we hope to release in a couple of days. This version has some improvements in the web harvest logging. You will be able to get a grip on a particular logger using its fully qualified class name, as usual. Also you can enable/disable logging level for the entire web harvest. For example:
Although 2.1.0rc1 is not yet officially released, you can obtain it from 2.1-release branch.