blob: 856a201fe2d75d2f1a9e1d35fe5d00cd745d19cc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache license, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the license for the specific language governing permissions and
* limitations under the license.
*/
package org.apache.logging.log4j.jackson.yaml.layout;
public class YamlConstants {
static final String EVENT = "event";
static final String ELT_CAUSE = "cause";
static final String ELT_CONTEXT_MAP = "contextMap";
static final String ELT_CONTEXT_STACK = "contextStack";
static final String ELT_MARKER = "marker";
static final String ELT_PARENTS = "parents";
static final String ELT_SOURCE = "source";
static final String ELT_SUPPRESSED = "suppressed";
static final String ELT_THROWN = "thrown";
static final String ELT_MESSAGE = "message";
static final String ELT_EXTENDED_STACK_TRACE = "extendedStackTrace";
static final String ELT_NANO_TIME = "nanoTime";
static final String ELT_INSTANT = "instant";
}