Example usage for java.util.logging Logger global

List of usage examples for java.util.logging Logger global

Introduction

In this page you can find the example usage for java.util.logging Logger global.

Prototype

Logger global

To view the source code for java.util.logging Logger global.

Click Source Link

Document

The "global" Logger object is provided as a convenience to developers who are making casual use of the Logging package.

Usage

From source file:com.github.tarrsalah.jaxrs.Application.java

public Application() {
    packages("com.github.tarrsalah.jaxrs.api");
    register(new HK2Binder());
    register(JacksonFeature.class);
    register(new ObjectMapperProvider());
    register(new LoggingFilter(Logger.global, true));
    property(ServerProperties.TRACING, "ALL");
}