setLogLevel method

  1. @Deprecated('Dev only')
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('Dev only')
Future<void> setLogLevel(int logLevel) async {
  await setOptions(SqfliteOptions(logLevel: logLevel));
}