Package com.dbxml.util

Examples of com.dbxml.util.LoggingStream


            if ( logFile != null ) {
               boolean header = !logFile.exists();
               System.out.println("Logging to " + logFile.getPath());

               FileOutputStream fos = new FileOutputStream(logFile.getPath(), true);
               LoggingStream ls = new LoggingStream(fos);
               PrintStream ps = new PrintStream(ls, true);

               if ( header ) {
                  String s = dbXML.Title + " " + dbXML.Version + " Console Log File";
                  ps.println(s);
View Full Code Here

TOP

Related Classes of com.dbxml.util.LoggingStream

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.