Package 

Interface RCTLog

  • All Implemented Interfaces:
    com.facebook.react.bridge.JavaScriptModule

    
    public interface RCTLog
     implements JavaScriptModule
                        

    JS module interface for RCTLog

    The RCTLog module allows for showing native logs in JavaScript.

    • Method Summary

      Modifier and Type Method Description
      abstract void logIfNoNativeHook(String level, String message) Send a log to JavaScript.
      • Methods inherited from class java.lang.Object

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

      • logIfNoNativeHook

         abstract void logIfNoNativeHook(String level, String message)

        Send a log to JavaScript.

        Parameters:
        level - The level of the log.
        message - The message to log.