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

com.progressoft.brix.domino.api.server.logging.DefaultRemoteLogger Maven / Gradle / Ivy

The newest version!
package com.progressoft.brix.domino.api.server.logging;

import java.util.logging.LogRecord;
import java.util.logging.Logger;

public class DefaultRemoteLogger implements RemoteLogger {

    private static final Logger LOGGER = Logger.getLogger(DefaultRemoteLogger.class.getName());

    @Override
    public void log(LogRecord logRecord, String permutationStrongName) {
        LOGGER.log(logRecord);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy