getLog method

Log getLog()

Gets the the log.

return The log. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

Log getLog() {
  Log log = Log();
  var err = biosealSDK.id3Bioseal_GetLog(_pHandle.value, log.handle);
  if (err != BiosealError.success.value) {
    log.dispose();
    throw BiosealException(err);
  }
  return log;
}