Package net.xeoh.plugins.diagnosis.local.impl.serialization.java

Examples of net.xeoh.plugins.diagnosis.local.impl.serialization.java.LogFileWriter


     * @return
     */
    LogFileWriter createWriter() {
        // First try to return a writer with the given name
        try {
            return new LogFileWriter(this.recordingFile, this.compressOutput);
        } catch (Exception e) {}

        // First try to return a writer with some time stamp attached (in case the old one was not overwritable)
        try {
            return new LogFileWriter(this.recordingFile + "." + System.currentTimeMillis(), this.compressOutput);
        } catch (Exception e) {}

        // Now we are out of luck
        return null;
    }
View Full Code Here

TOP

Related Classes of net.xeoh.plugins.diagnosis.local.impl.serialization.java.LogFileWriter

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.