catLogs method

Future<String?> catLogs({
  1. bool stderr = false,
  2. Pattern? waitDataMatcher,
  3. Duration? waitDataTimeout,
  4. bool waitExit = false,
  5. int? desiredExitCode,
  6. bool follow = false,
})

Returns this Container logs as String.

Implementation

Future<String?> catLogs({
  bool stderr = false,
  Pattern? waitDataMatcher,
  Duration? waitDataTimeout,
  bool waitExit = false,
  int? desiredExitCode,
  bool follow = false,
}) =>
    runner.dockerHost.catContainerLogs(name,
        stderr: stderr,
        waitDataMatcher: waitDataMatcher,
        waitDataTimeout: waitDataTimeout,
        waitExit: waitExit,
        desiredExitCode: desiredExitCode,
        follow: follow);