Package org.mortbay.util

Examples of org.mortbay.util.RolloverFileOutputStream


            _logDateCache.setTimeZoneID(_logTimeZone);
        }
       
        if (_filename != null)
        {
            _fileOut = new RolloverFileOutputStream(_filename,_append,_retainDays,TimeZone.getTimeZone(_logTimeZone),_filenameDateFormat,null);
            _closeOut = true;
            Log.info("Opened "+getDatedFilename());
        }
        else
            _fileOut = System.err;
View Full Code Here


            _logDateCache.setTimeZoneID(_logTimeZone);
        }
       
        if (_filename != null)
        {
            _fileOut = new RolloverFileOutputStream(_filename,_append,_retainDays,TimeZone.getTimeZone(_logTimeZone),_filenameDateFormat,null);
            _closeOut = true;
            Log.info("Opened "+getDatedFilename());
        }
        else
            _fileOut = System.err;
View Full Code Here

     * @see org.mortbay.jetty.handler.HandlerWrapper#doStart()
     */
    protected void doStart() throws Exception
    {
        if (_out==null)
            _out=new RolloverFileOutputStream("./logs/yyyy_mm_dd.debug.log",true);
        _print=new PrintStream(_out);
        super.doStart();
    }
View Full Code Here

            _logDateCache.setTimeZoneID(_logTimeZone);
        }
       
        if (_filename != null)
        {
            _fileOut = new RolloverFileOutputStream(_filename,_append,_retainDays,TimeZone.getTimeZone(_logTimeZone),_filenameDateFormat,null);
            _closeOut = true;
            Log.info("Opened "+getDatedFilename());
        }
        else
            _fileOut = System.err;
View Full Code Here

TOP

Related Classes of org.mortbay.util.RolloverFileOutputStream

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.