warn method

  1. @VoltronMethod(kConsoleWarn)
bool warn(
  1. String message,
  2. JSPromise promise
)

Implementation

@VoltronMethod(kConsoleWarn)
bool warn(String message, JSPromise promise) {
  LogUtils.w("Voltron_console", message);
  return false;
}