Java com.google.gwt.core.ext TreeLogger fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.core.ext TreeLogger fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.core.ext TreeLogger.

The text is from its open source code.

Subclass

com.google.gwt.core.ext.TreeLogger has subclasses.
Click this link to see all its subclasses.

Field

TypeERROR
Logs an error.
TypeWARN
Logs a warning.
TypeINFO
Logs information.
TypeTRACE
Logs information related to lower-level operation.
TypeDEBUG
Logs detailed information that could be useful during debugging.
TypeSPAM
Logs extremely verbose and detailed information that is typically useful only to product implementors.
TypeALL
Logs everything -- quite a bit of stuff.
TreeLoggerNULL
A valid logger that ignores all messages.

Constructor

Method

TreeLoggerbranch(TreeLogger.Type type, String msg, Throwable caught)
Calls #branch(com.google.gwt.core.ext.TreeLogger.Type,String,Throwable,com.google.gwt.core.ext.TreeLogger.HelpInfo) with a null helpInfo.
TreeLoggerbranch(TreeLogger.Type type, String msg)
Calls #branch(com.google.gwt.core.ext.TreeLogger.Type,String,Throwable,com.google.gwt.core.ext.TreeLogger.HelpInfo) with a null caught and helpInfo.
TreeLoggerbranch(TreeLogger.Type type, String msg, Throwable caught, HelpInfo helpInfo)
Produces a branched logger, which can be used to write messages that are logically grouped together underneath the current logger.
booleanisLoggable(TreeLogger.Type type)
Determines whether or not a log entry of the specified type would actually be logged.
voidlog(TreeLogger.Type type, String msg, Throwable caught)
Calls #log(TreeLogger.Type,String,Throwable,HelpInfo) with a null helpInfo.
voidlog(TreeLogger.Type type, String msg)
Calls #log(TreeLogger.Type,String,Throwable,HelpInfo) with a null caught and helpInfo.