Example #1
0
 protected void clearHistory() {
   if (sessionPersistence) {
     logService.clear();
   } else {
     inMemoryLogger.clear();
   }
 }
Example #2
0
 protected void clearHistory() {
   if (sessionPersistence && logService != null) {
     logService.clear();
   } else if (inMemoryLogger != null) {
     inMemoryLogger.clear();
   }
 }
 protected void clearHistory() {
   if (logService != null) {
     logService.clear();
   }
 }