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

com.databricks.jdbc.log.JdbcLogger Maven / Gradle / Ivy

There is a newer version: 2.6.40-patch-1
Show newest version
package com.databricks.jdbc.log;

/**
 * The interface defines logging methods for various levels of importance. Implementations of this
 * interface can be used to integrate with different logging frameworks.
 */
public interface JdbcLogger {
  void trace(String message);

  void debug(String message);

  void info(String message);

  void warn(String message);

  void error(String message);

  void error(String message, Throwable throwable);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy