Interface E3Tracer


public interface E3Tracer
Interface to an object which makes entries in the trace files.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    error(String message)
    Makes an error trace entry
    void
    error(String module, String msg)
    Makes an error trace entry
    void
    error(String module, Throwable throwable)
    Makes an error trace entry
    void
    info(String message)
    Makes an informational trace entry
    void
    info(String module, String msg)
    Makes an informational trace entry
  • Method Details

    • error

      void error(String message)
      Makes an error trace entry
      Parameters:
      message - message to write
    • error

      void error(String module, String msg)
      Makes an error trace entry
      Parameters:
      module - module requesting entry
      msg - message to trace
    • error

      void error(String module, Throwable throwable)
      Makes an error trace entry
      Parameters:
      module - module requesting entry
      throwable - exception or error to be logged
    • info

      void info(String message)
      Makes an informational trace entry
      Parameters:
      message - message to trace
    • info

      void info(String module, String msg)
      Makes an informational trace entry
      Parameters:
      module - module requesting entry
      msg - message to trace