All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.dropwizard.logging.json.EventAttribute Maven / Gradle / Ivy

There is a newer version: 5.0.0-alpha.4
Show newest version
package io.dropwizard.logging.json;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Represents event logging attributes.
 */
public enum EventAttribute {
    @JsonProperty("level") LEVEL,
    @JsonProperty("threadName") THREAD_NAME,
    @JsonProperty("mdc") MDC,
    @JsonProperty("marker") MARKER,
    @JsonProperty("loggerName") LOGGER_NAME,
    @JsonProperty("message") MESSAGE,
    @JsonProperty("exception") EXCEPTION,
    @JsonProperty("contextName") CONTEXT_NAME,
    @JsonProperty("timestamp") TIMESTAMP,
    @JsonProperty("callerData") CALLER_DATA
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy