Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
org.dartlang.vm.service.logging.Logger.NullLogger Class Reference
Inheritance diagram for org.dartlang.vm.service.logging.Logger.NullLogger:
org.dartlang.vm.service.logging.Logger

Public Member Functions

void logError (String message)
 
void logError (String message, Throwable exception)
 
void logInformation (String message)
 
void logInformation (String message, Throwable exception)
 

Additional Inherited Members

- Static Public Attributes inherited from org.dartlang.vm.service.logging.Logger
static final Logger NULL = new NullLogger()
 

Detailed Description

Implementation of Logger that does nothing.

Definition at line 26 of file Logger.java.

Member Function Documentation

◆ logError() [1/2]

void org.dartlang.vm.service.logging.Logger.NullLogger.logError ( String  message)
inline

Log the given message as an error.

Parameters
messagean explanation of why the error occurred or what it means

Implements org.dartlang.vm.service.logging.Logger.

Definition at line 28 of file Logger.java.

28 {
29 }

◆ logError() [2/2]

void org.dartlang.vm.service.logging.Logger.NullLogger.logError ( String  message,
Throwable  exception 
)
inline

Log the given exception as one representing an error.

Parameters
messagean explanation of why the error occurred or what it means
exceptionthe exception being logged

Implements org.dartlang.vm.service.logging.Logger.

Definition at line 32 of file Logger.java.

32 {
33 }

◆ logInformation() [1/2]

void org.dartlang.vm.service.logging.Logger.NullLogger.logInformation ( String  message)
inline

Log the given informational message.

Parameters
messagean explanation of why the error occurred or what it means

Implements org.dartlang.vm.service.logging.Logger.

Definition at line 36 of file Logger.java.

36 {
37 }

◆ logInformation() [2/2]

void org.dartlang.vm.service.logging.Logger.NullLogger.logInformation ( String  message,
Throwable  exception 
)
inline

Log the given exception as one representing an informational message.

Parameters
messagean explanation of why the error occurred or what it means
exceptionthe exception being logged

Implements org.dartlang.vm.service.logging.Logger.

Definition at line 40 of file Logger.java.

40 {
41 }

The documentation for this class was generated from the following file: