logVerbose static method

Future<void> logVerbose(
  1. String message
)

Appends a log message to Instabug internal log These logs are then sent along the next uploaded report. All log messages are timestamped Note: logs passed to this method are NOT printed to console

Implementation

static Future<void> logVerbose(String message) async {
  return _host.logVerbose(message);
}