Exemplo n.º 1
0
 /**
  * Get the current ESAPI Auditor object being used to to audit security-relevant
  * events for this application.
  * 
  * @return the current ESAPI Logger.
  */
 public static function log()
 {
     if (self::$_defaultAuditor == null) {
         self::$_defaultAuditor = self::$_auditorFactory->getLogger("DefaultLogger");
     }
     return self::$_defaultAuditor;
 }