Commons/src/main/java/eu/univento/commons/logging/LoggingHandler.java

23 lines
508 B
Java

/*
* Copyright (c) 2017 univento.eu - All rights reserved
* You are not allowed to use, distribute or modify this code
*/
package eu.univento.commons.logging;
import eu.univento.commons.messaging.MessageHandler;
import eu.univento.commons.server.ServerType;
/**
* @author joethei
* @version 1.0
*/
public class LoggingHandler {
public LoggingHandler() {}
public void log(String message) {
MessageHandler.sendMessage("log." + ServerType.getServerType().getName(), message);
}
}