RNLog

object RNLog

Logging wrapper for FLog with LogBox support.

Properties

Link copied to clipboard
const val ADVICE: Int
Link copied to clipboard
const val ERROR: Int
Link copied to clipboard
const val LOG: Int
Link copied to clipboard
Link copied to clipboard
const val TRACE: Int
Link copied to clipboard
const val WARN: Int

Functions

Link copied to clipboard
fun a(message: String)

Log a warning level message tagged as React Native to the console. This warning will not be shown in LogBox.

Link copied to clipboard
fun e(message: String)

Log an error level message tagged as React Native to the console. This error will not be shown in LogBox.

fun e(context: ReactContext?, message: String)

Log an error level message tagged as React Native to the console and display in the app.

Link copied to clipboard
fun l(message: String)

Log a log level message tagged as React Native to the console.

Link copied to clipboard
fun t(message: String)

Log a trace level message tagged as React Native to the console.

Link copied to clipboard
fun w(context: ReactContext?, message: String)

Log a warning level message tagged as React Native to the console and display in the app.