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

com.redhat.insights.logging.InsightsLogger Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
/* Copyright (C) Red Hat 2023 */
package com.redhat.insights.logging;

/** A logging facade to integrate with runtime-preferred logging mechanism. */
public interface InsightsLogger {

  void debug(String message);

  void debug(String message, Throwable err);

  void info(String message);

  void error(String message);

  void error(String message, Throwable err);

  void warning(String message);

  void warning(String message, Throwable err);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy