Example usage for org.springframework.boot.logging LogLevel FATAL

List of usage examples for org.springframework.boot.logging LogLevel FATAL

Introduction

In this page you can find the example usage for org.springframework.boot.logging LogLevel FATAL.

Prototype

LogLevel FATAL

To view the source code for org.springframework.boot.logging LogLevel FATAL.

Click Source Link

Usage

From source file:org.springframework.boot.logging.DeferredLog.java

@Override
public void fatal(Object message) {
    log(LogLevel.FATAL, message, null);
}

From source file:org.springframework.boot.logging.DeferredLog.java

@Override
public void fatal(Object message, Throwable t) {
    log(LogLevel.FATAL, message, t);
}