FileDocCategorySizeDatePackage
DottedNameLogger.javaAPI DocGlassfish v2 API2862Fri May 04 22:24:08 BST 2007com.sun.enterprise.admin.dottedname

DottedNameLogger

public final class DottedNameLogger extends Object

Fields Summary
static Logger
sLogger
Constructors Summary
private DottedNameLogger()

	
		
	
	
	
Methods Summary
public static voiddm(java.lang.Object o)

    	//sLogger.setLevel( java.util.logging.Level.INFO );
        sLogger.info( o == null ? "null" : o.toString() );
	
public static java.util.logging.LoggergetInstance()

		return( sLogger );
	
public static voidlogException(java.lang.Exception e)

		if ( e instanceof DottedNameServerInfo.UnavailableException )
		{
			sLogger.severe( e.toString() );
		}
		else
		{
			sLogger.info( e.toString() );
		}