Package org.jclouds.logging
Class NullLogger
- java.lang.Object
-
- org.jclouds.logging.NullLogger
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.jclouds.logging.Logger
Logger.LoggerFactory
-
-
Constructor Summary
Constructors Constructor Description NullLogger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
debug(String message, Object... args)
void
error(String message, Object... args)
void
error(Throwable throwable, String message, Object... args)
String
getCategory()
void
info(String message, Object... args)
boolean
isDebugEnabled()
boolean
isErrorEnabled()
boolean
isInfoEnabled()
boolean
isTraceEnabled()
boolean
isWarnEnabled()
void
trace(String message, Object... args)
void
warn(String message, Object... args)
void
warn(Throwable throwable, String message, Object... args)
-
-
-
Method Detail
-
getCategory
public String getCategory()
- Specified by:
getCategory
in interfaceLogger
-
isDebugEnabled
public boolean isDebugEnabled()
- Specified by:
isDebugEnabled
in interfaceLogger
-
isErrorEnabled
public boolean isErrorEnabled()
- Specified by:
isErrorEnabled
in interfaceLogger
-
isInfoEnabled
public boolean isInfoEnabled()
- Specified by:
isInfoEnabled
in interfaceLogger
-
isTraceEnabled
public boolean isTraceEnabled()
- Specified by:
isTraceEnabled
in interfaceLogger
-
isWarnEnabled
public boolean isWarnEnabled()
- Specified by:
isWarnEnabled
in interfaceLogger
-
-