Uses of Enum
com.google.gwt.core.ext.TreeLogger.Type
Packages that use TreeLogger.Type
-
Uses of TreeLogger.Type in com.google.gwt.core.ext
Fields in com.google.gwt.core.ext declared as TreeLogger.TypeModifier and TypeFieldDescriptionstatic final TreeLogger.TypeTreeLogger.ALLLogs everything -- quite a bit of stuff.static final TreeLogger.TypeTreeLogger.DEBUGLogs detailed information that could be useful during debugging.static final TreeLogger.TypeTreeLogger.ERRORLogs an error.static final TreeLogger.TypeTreeLogger.INFOLogs information.static final TreeLogger.TypeTreeLogger.SPAMLogs extremely verbose and detailed information that is typically useful only to product implementors.static final TreeLogger.TypeTreeLogger.TRACELogs information related to lower-level operation.static final TreeLogger.TypeTreeLogger.WARNLogs a warning.Methods in com.google.gwt.core.ext that return TreeLogger.TypeModifier and TypeMethodDescriptionstatic TreeLogger.Type[]TreeLogger.Type.instances()Gets all the possible severity types as an array.static TreeLogger.TypeReturns 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.Methods in com.google.gwt.core.ext with parameters of type TreeLogger.TypeModifier and TypeMethodDescriptionfinal TreeLoggerTreeLogger.branch(TreeLogger.Type type, String msg) CallsTreeLogger.branch(com.google.gwt.core.ext.TreeLogger.Type, String, Throwable, com.google.gwt.core.ext.TreeLogger.HelpInfo)with anullcaughtandhelpInfo.final TreeLoggerTreeLogger.branch(TreeLogger.Type type, String msg, Throwable caught) abstract TreeLoggerTreeLogger.branch(TreeLogger.Type type, String msg, 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 booleanTreeLogger.isLoggable(TreeLogger.Type type) Determines whether or not a log entry of the specified type would actually be logged.booleanTreeLogger.Type.isLowerPriorityThan(TreeLogger.Type other) Determines whether this log type is of lower priority than some other log type.final voidTreeLogger.log(TreeLogger.Type type, String msg) final voidTreeLogger.log(TreeLogger.Type type, String msg, Throwable caught) abstract voidTreeLogger.log(TreeLogger.Type type, String msg, Throwable caught, TreeLogger.HelpInfo helpInfo) Logs a message and/or an exception, with optional help info.