Package | Description |
---|---|
com.google.gwt.core.ext |
Classes used to extend the GWT compiler.
|
Modifier and Type | Field and Description |
---|---|
static TreeLogger.Type |
TreeLogger.ALL
Logs everything -- quite a bit of stuff.
|
static TreeLogger.Type |
TreeLogger.DEBUG
Logs detailed information that could be useful during debugging.
|
static TreeLogger.Type |
TreeLogger.ERROR
Logs an error.
|
static TreeLogger.Type |
TreeLogger.INFO
Logs information.
|
static TreeLogger.Type |
TreeLogger.SPAM
Logs extremely verbose and detailed information that is typically useful
only to product implementors.
|
static TreeLogger.Type |
TreeLogger.TRACE
Logs information related to lower-level operation.
|
static TreeLogger.Type |
TreeLogger.WARN
Logs a warning.
|
Modifier and Type | Method and Description |
---|---|
static TreeLogger.Type[] |
TreeLogger.Type.instances()
Gets all the possible severity types as an array.
|
static TreeLogger.Type |
TreeLogger.Type.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TreeLogger.Type[] |
TreeLogger.Type.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
TreeLogger |
TreeLogger.branch(TreeLogger.Type type,
java.lang.String msg)
Calls
TreeLogger.branch(com.google.gwt.core.ext.TreeLogger.Type, String, Throwable, com.google.gwt.core.ext.TreeLogger.HelpInfo)
with a null caught and helpInfo . |
TreeLogger |
TreeLogger.branch(TreeLogger.Type type,
java.lang.String msg,
java.lang.Throwable caught)
|
abstract TreeLogger |
TreeLogger.branch(TreeLogger.Type type,
java.lang.String msg,
java.lang.Throwable caught,
TreeLogger.HelpInfo helpInfo)
Produces a branched logger, which can be used to write messages that are
logically grouped together underneath the current logger.
|
abstract boolean |
TreeLogger.isLoggable(TreeLogger.Type type)
Determines whether or not a log entry of the specified type would actually
be logged.
|
boolean |
TreeLogger.Type.isLowerPriorityThan(TreeLogger.Type other)
Determines whether this log type is of lower priority than some other log
type.
|
void |
TreeLogger.log(TreeLogger.Type type,
java.lang.String msg)
|
void |
TreeLogger.log(TreeLogger.Type type,
java.lang.String msg,
java.lang.Throwable caught)
|
abstract void |
TreeLogger.log(TreeLogger.Type type,
java.lang.String msg,
java.lang.Throwable caught,
TreeLogger.HelpInfo helpInfo)
Logs a message and/or an exception, with optional help info.
|