getLogLevel function

int getLogLevel()

Gets the global logging level.

Implementation

int getLogLevel() {
  final p = calloc<ffi.Int>();
  cvRun(() => ccore.getLogLevel(p));
  final level = p.value;
  calloc.free(p);
  return level;
}