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

de.mhus.lib.core.MLog Maven / Gradle / Ivy

There is a newer version: 6.3.1
Show newest version
package de.mhus.lib.core;

import de.mhus.lib.annotations.pojo.Hidden;
import de.mhus.lib.core.logging.Log;

/**
 * This class is currently only a place holder for a smarter strategy. But
 * the interface should be fix.
 * TODO implement strategy
 *
 * @author mikehummel
 * @version $Id: $Id
 */
public class MLog implements ILog {
	
	@Hidden
	private Log log;
	
	/** {@inheritDoc} */
	@Override
	public synchronized Log log() {
		if (log == null) {
			log = Log.getLog(this);
		}
		return log;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy