FileDocCategorySizeDatePackage
Log.javaAPI DocGlassfish v2 API2751Fri May 04 22:32:04 BST 2007com.sun.enterprise.log

Log

public final class Log extends Object
This class has public static references to 2 Log objects.
  • out : For logging the server Output. By default, the Output log is set to the PrintStream System.out.
  • err : For logging the server Errors. By default, the Error log is set to the the PrintStream System.err.
author
Harish Prabandham

Fields Summary
public static final PrintStream
out
public static final PrintStream
err
Constructors Summary
Methods Summary
public static voidflushAll()

    
    
        
	if(System.out != null) 
	    System.out.flush();
	
	if(System.err != null) 
	    System.err.flush();