Flutter Engine
The Flutter Engine
|
Classes | |
class | NullLogger |
Public Member Functions | |
void | logError (String message) |
void | logError (String message, Throwable exception) |
void | logInformation (String message) |
void | logInformation (String message, Throwable exception) |
Static Public Attributes | |
static final Logger | NULL = new NullLogger() |
The interface Logger
defines the behavior of objects that can be used to receive information about errors. Implementations usually write this information to a file, but can also record the information for later use (such as during testing) or even ignore the information.
Definition at line 21 of file Logger.java.
void org.dartlang.vm.service.logging.Logger.logError | ( | String | message | ) |
Log the given message as an error.
message | an explanation of why the error occurred or what it means |
Implemented in org.dartlang.vm.service.logging.Logger.NullLogger.
void org.dartlang.vm.service.logging.Logger.logError | ( | String | message, |
Throwable | exception | ||
) |
Log the given exception as one representing an error.
message | an explanation of why the error occurred or what it means |
exception | the exception being logged |
Implemented in org.dartlang.vm.service.logging.Logger.NullLogger.
void org.dartlang.vm.service.logging.Logger.logInformation | ( | String | message | ) |
Log the given informational message.
message | an explanation of why the error occurred or what it means |
Implemented in org.dartlang.vm.service.logging.Logger.NullLogger.
void org.dartlang.vm.service.logging.Logger.logInformation | ( | String | message, |
Throwable | exception | ||
) |
Log the given exception as one representing an informational message.
message | an explanation of why the error occurred or what it means |
exception | the exception being logged |
Implemented in org.dartlang.vm.service.logging.Logger.NullLogger.
|
static |
Definition at line 44 of file Logger.java.