if ( !this.doLog ) {
return new DummyPatternLogger();
}
IPatternLogger pl = new PatternLogger(this.PATTERN.matcher(this.orderString), this.orderString, this.log, this.logDateFormat, this.timeZone);
pl.paramPut(TransactionTags.ERROR_MESSAGE.toString(), "NO_ERROR");
pl.paramPut(TransactionTags.METHOD.toString(), new Throwable().getStackTrace()[2].getMethodName());
pl.paramPut(IPatternLogger.LOG_ID, Integer.toString(this.transactionID++));
pl.paramPut(IPatternLogger.SESSION_ID, this.sessionID);
return pl;
}
}