Package com.atlauncher.writer

Examples of com.atlauncher.writer.LogEventWriter


    public LoggingThread(BlockingQueue<LogEvent> queue) {
        this.queue = queue;
        this.setName("ATL-Logging-Thread");
        try {
            this.writer = new LogEventWriter(new FileWriter(new File(App.settings.getBaseDir(),
                    "ATLauncher-Log-1.txt")));
            this.writer.write("Generated on " + Timestamper.now() + "\n");
            Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
                @Override
                public void run() {
View Full Code Here

TOP

Related Classes of com.atlauncher.writer.LogEventWriter

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.