/**
* Method called to suppress all request logging; usually during testing.
*/
@SuppressWarnings("unchecked")
public THIS disableRequestLog() {
RequestLogConfiguration reqLog = getHttpConfiguration().getRequestLogConfiguration();
reqLog.getConsoleConfiguration().setEnabled(false);
reqLog.getFileConfiguration().setEnabled(false);
reqLog.getSyslogConfiguration().setEnabled(false);
return (THIS) this;
}