final Object aLoggerPool = xContext.getValueByName("/singletons/com.sun.star.logging.LoggerPool");
if (aLoggerPool == null)
{
System.out.println("Can't get singleton from logging");
}
final XLoggerPool xLoggerPool = (XLoggerPool)UnoRuntime.queryInterface(XLoggerPool.class, aLoggerPool);
m_xLogger = xLoggerPool.getNamedLogger("com.sun.star.wizards.ReportBuilder");
}