Interface PaxLocationInfo


  • public interface PaxLocationInfo
    Framework library agnostic representation of location info that identifies the place in code where logging event was created.
    • Method Detail

      • getFileName

        String getFileName()
        Return the file name of the caller. This information is not always available.
        Returns:
        the file name of the caller.
      • getClassName

        String getClassName()
        Return the fully qualified class name of the caller making the logging request.
        Returns:
        the fully qualified class name of the caller making the logging request.
      • getLineNumber

        String getLineNumber()
        Returns the line number of the caller. This information is not always available.
        Returns:
        the line number of the caller.
      • getMethodName

        String getMethodName()
        Returns the method name of the caller.
        Returns:
        the method name of the caller.