com.groupdocs.conversion.logging

Interface ILogger

  • All Known Implementing Classes:
    ConsoleLogger


    public interface ILogger

    Defines the methods that are used to perform logging.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      void error(String message, com.aspose.ms.System.Exception exception)
      Writes error log message; Error log messages provides information about unrecoverable events in application flow.
      void trace(String message)
      Writes trace log message; Trace log messages provides generally useful information about application flow.
      void warning(String message)
      Writes warning log message; Warning log messages provides information about unexpected and recoverable event in application flow.
    • Method Detail

      • trace

        void trace(String message)

        Writes trace log message; Trace log messages provides generally useful information about application flow.

        Parameters:
        message - The trace message.
      • warning

        void warning(String message)

        Writes warning log message; Warning log messages provides information about unexpected and recoverable event in application flow.

        Parameters:
        message - The warning message.
      • error

        void error(String message,
                   com.aspose.ms.System.Exception exception)

        Writes error log message; Error log messages provides information about unrecoverable events in application flow.

        Parameters:
        message - The error message.
        exception - The exception.