setLogLevel method

  1. @deprecated
Future<void> setLogLevel(
  1. int logLevel
)

Change the log level if you want to see the SQL query executed natively.

Deprecated for temp usage only

Implementation

@deprecated
Future<void> setLogLevel(int logLevel) async {
  await setOptions(SqfliteOptions(logLevel: logLevel));
}