debugSetLogLevel method

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