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

aQute.bnd.deployer.repository.NullLogService Maven / Gradle / Ivy

Go to download

This command line utility is the Swiss army knife of OSGi. It provides you with a breadth of tools to understand and manage OSGi based systems. This project basically uses bndlib.

There is a newer version: 7.1.0
Show newest version
package aQute.bnd.deployer.repository;

import org.osgi.framework.ServiceReference;
import org.osgi.service.log.LogService;

public class NullLogService implements LogService {

	@Override
	public void log(int level, String message) {}

	@Override
	public void log(int level, String message, Throwable t) {}

	@Override
	public void log(ServiceReference sr, int level, String message) {}

	@Override
	public void log(ServiceReference sr, int level, String message, Throwable t) {}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy