setRLogLevel

public abstract void setRLogLevel(int pLevel)

Sets the console log level. Must be called after initialization.

Since

5.0.0

Parameters

pLevel

The log level.

The severity of log levels from high to low is as follows:

  1. F: fatal
  2. E: error
  3. W: warning
  4. I: info
  5. D: debug
  6. V: verbose

By default, all log levels are output to the console.

Setting a specific level will output logs of that level and above to the console.

For example, passing E will output F and E, but not W, I, D, or V.

For example, passing W will output F, E, and W, but not I, D, or V.

If you do not want the SDK to output logs to the console, pass NONE