logDebug static method

Future<void> logDebug(
  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> logDebug(String message) async {
  return _host.logDebug(message);
}