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

org.openqa.selenium.internal.Trace Maven / Gradle / Ivy

There is a newer version: 2.0b1
Show newest version
package org.openqa.selenium.internal;

// I am not calling this "log".
public interface Trace {
  void info(String message);

  void warn(Throwable e);
  void warn(String message);
  void warn(String message, Throwable throwable);

  void error(String message);

  void debug(String message);
  void debug(String message, Throwable throwable);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy