blob: 3c2c576b27808cd21367cc890ff5dde75b080c3d [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*/
package org.eclipse.osbp.xtext.messagedsl.common;
/**
* @see http://stackoverflow.com/questions/7839565/logging-levels-logback-rule-of-thumb-to-assign-log-levels
*/
public interface ILogMessageConsumer {
public void logTrace(Message message);
public void logDebug(Message message);
public void logInfo(Message message);
public void logWarn(Message message);
public void logError(Message message);
}