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

org.xipki.pkcs11.wrapper.Logger Maven / Gradle / Ivy

The newest version!
// Copyright (c) 2022 xipki. All rights reserved.
// License Apache License 2.0

package org.xipki.pkcs11.wrapper;

/**
 * Logger.
 *
 * @author Lijun Liao
 */
public interface Logger {

    void info(String format, Object... arguments);

    void warn(String format, Object... arguments);

    void error(String format, Object... arguments);

    void debug(String format, Object... arguments);

    void trace(String format, Object... arguments);

    boolean isDebugEnabled();

    boolean isInfoEnabled();

    boolean isWarnEnabled();

    boolean isTraceEnabled();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy