Paolo Castagna wrote:
> Now, fighting with the tests which should not log anything:
>
> Log.disable(tdbloader3.class);
> Log.disable(TDBLoader.class);
>
> this works for most of the log.info(...), but not for 6 lines:
[...]
> Strange... search continues.
Ok, this worked:
@Before public void setup() {
// Disable any log during tests...
Log.disable(TDB.logLoaderName);
Log.disable(TDB.logInfoName);
Log.disable(TDB.logLoader.getClass());
Log.disable(tdbloader3.class);
Log.disable(TDBLoader.class);
Paolo