Package 

Interface IOtelLogger


  • 
    public interface IOtelLogger
    
                        

    Platform-agnostic logger interface for the Otel module. Implementations should be provided by the platform (Android/iOS).

    • Method Summary

      Modifier and Type Method Description
      abstract Unit error(String message) Logs an error message.
      abstract Unit warn(String message) Logs a warning message.
      abstract Unit info(String message) Logs an informational message.
      abstract Unit debug(String message) Logs a debug message.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • error

         abstract Unit error(String message)

        Logs an error message.

        Parameters:
        message - The error message to log
      • warn

         abstract Unit warn(String message)

        Logs a warning message.

        Parameters:
        message - The warning message to log
      • info

         abstract Unit info(String message)

        Logs an informational message.

        Parameters:
        message - The info message to log
      • debug

         abstract Unit debug(String message)

        Logs a debug message.

        Parameters:
        message - The debug message to log