Interface Logger


  • public interface Logger
    Logging interface for Mosip
    Since:
    1.0.0
    Author:
    Urvil Joshi
    • Method Detail

      • debug

        void debug​(String sessionId,
                   String idType,
                   String id,
                   String description)
        Logs at Debug logging level
        Parameters:
        sessionId - session id
        idType - type of id
        id - id value
        description - description of log
      • warn

        void warn​(String sessionId,
                  String idType,
                  String id,
                  String description)
        Logs at Warn logging level
        Parameters:
        sessionId - session id
        idType - type of id
        id - id value
        description - description of log
      • error

        void error​(String sessionId,
                   String idType,
                   String id,
                   String description)
        Logs at Error logging level
        Parameters:
        sessionId - session id
        idType - type of id
        id - id value
        description - description of log
      • info

        void info​(String sessionId,
                  String idType,
                  String id,
                  String description)
        Logs at Info logging level
        Parameters:
        sessionId - session id
        idType - type of id
        id - id value
        description - description of log
      • trace

        void trace​(String sessionId,
                   String idType,
                   String id,
                   String description)
        Logs at Trace logging level
        Parameters:
        sessionId - session id
        idType - type of id
        id - id value
        description - description of log