Package org.jwall.audit.script.utils

Examples of org.jwall.audit.script.utils.TimePrintStream


      log.info( "database has {} events in total and {} events with status=500", total, error500 );

      ScriptRunner exec = new ScriptRunner( rubyScript, "ruby" );

      ByteArrayOutputStream baos = new ByteArrayOutputStream();
      exec.init( new TimePrintStream( baos), System.err );
      exec.setAuditEventView( database );
      exec.execute();

      log.debug( "Output:\n{}", new String( baos.toByteArray() ) );
     
View Full Code Here

TOP

Related Classes of org.jwall.audit.script.utils.TimePrintStream

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.