Package com.sun.enterprise.server.logging.logviewer.backend

Examples of com.sun.enterprise.server.logging.logviewer.backend.LogFile


            super.flush( );
            super.close();
            try {
                openFile( fileName );
                // Change the file for LogViewer
                LogFilter.setLogFile( new LogFile( fileName ) );
                absoluteFileName = fileName;
            } catch( IOException ix ) {
                new ErrorManager().error(
                    "FATAL ERROR: COULD NOT OPEN LOG FILE. " +
                    "Please Check to make sure that the directory for " +
View Full Code Here


                            FileOutputStream fo =
                                new FileOutputStream( freshServerLogFileName );
                            fo.close( );
                        }
                        openFile( createFileName( ) );
                        LogFilter.setLogFile( new LogFile( absoluteFileName) );
                        // This will ensure that the log rotation timer
                        // will be restarted if there is a value set
                        // for time based log rotation
                        LogRotationTimer.getInstance( ).restartTimer( );
View Full Code Here

TOP

Related Classes of com.sun.enterprise.server.logging.logviewer.backend.LogFile

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.