test method

  1. @override
Future<bool> test()
override

Tests the transport connection.

Returns true if the transport is properly configured and can connect.

Implementation

@override
Future<bool> test() async {
  _logger.info('Log transport is always available');
  return true;
}