I simply want to disable Restlet\'s logging to stdout/stderr in my project and forward all Restlet logging through the SLF4J facade provided by org.restlet.ext.slf4j. Is there a
I managed to disable the annoying Restlet logging by:
Component component = new Component(); // Disable damn log component.setLogService(new org.restlet.service.LogService(false));
...