1 23 package com.sun.enterprise.log; 24 25 27 import java.io.PrintStream ; 28 29 38 public class Log { 39 public static PrintStream out = System.out; 40 public static PrintStream err = System.err; 41 42 public static void flushAll() { 43 if(System.out != null) 44 System.out.flush(); 45 46 if(System.err != null) 47 System.err.flush(); 48 } 49 } 50 51 52 53 54 55 | Popular Tags |