In version 2.7.7, I have next message in log of logger.
2013/02/11 13:17:21.278 BTH_AseDbSpce - Error in loop. java.lang.NullPointerException
java.lang.NullPointerException
at asemon_logger.SamplingMetric.getCnt(SamplingMetric.java:270)
at asemon_logger.CollectorGeneric.getMetrics(CollectorGeneric.java:158)
at asemon_logger.Collector.run(Collector.java:482)
The error occurs on several collectors.
The solution is to change line 270 from
if (w.getErrorCode()==10351)
to
if ( (w != null) && (w.getErrorCode()==10351) )
It checks that rs.getWarnings() returns something.
Anonymous
In src/asemon_logger/SamplingMetric.java
Ok Thanks,
it's fixed in 2.7.8 available soon
JP