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

io.github.iac_m.jsonlogger.dto.LogMessage Maven / Gradle / Ivy

Go to download

JSON Logger is a custom-made Mule logger component which allows user to efficiently log traceable messages and Mule variables in JSON format.

The newest version!
package io.github.iac_m.jsonlogger.dto;

import java.util.List;

public class LogMessage {

	private String correlationId;
	private String correlationIdLocal;
	private String message;
	private String timestamp;
	private String level;
	private String logger;
	private String thread;
	private List variables;
	private Throwable throwable;

	public LogMessage() {

	}

	public Throwable getThrowable() {
		return throwable;
	}

	public void setThrowable(Throwable throwable) {
		this.throwable = throwable;
	}

	public List getVariables() {
		return variables;
	}

	public void setVariables(List variables) {
		this.variables = variables;
	}

	public String getCorrelationId() {
		return correlationId;
	}

	public void setCorrelationId(String correlationId) {
		this.correlationId = correlationId;
	}

	public String getCorrelationIdLocal() {
		return correlationIdLocal;
	}

	public void setCorrelationIdLocal(String correlationIdLocal) {
		this.correlationIdLocal = correlationIdLocal;
	}

	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}

	public String getTimestamp() {
		return timestamp;
	}

	public void setTimestamp(String timestamp) {
		this.timestamp = timestamp;
	}

	public String getLevel() {
		return level;
	}

	public void setLevel(String level) {
		this.level = level;
	}

	public String getLogger() {
		return logger;
	}

	public void setLogger(String logger) {
		this.logger = logger;
	}

	public String getThread() {
		return thread;
	}

	public void setThread(String thread) {
		this.thread = thread;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy