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

com.bluenimble.platform.api.tracing.impls.DefaultLoggingHandler Maven / Gradle / Ivy

There is a newer version: 2.50.0
Show newest version
package com.bluenimble.platform.api.tracing.impls;

import java.util.logging.Handler;
import java.util.logging.LogRecord;

public class DefaultLoggingHandler extends Handler {

	@Override
	public void publish (LogRecord record) {
		
	}

	@Override
	public void flush () {
		// IGNORE
	}

	@Override
	public void close () throws SecurityException {
		// IGNORE
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy