logs abstract method

Future<String> logs(
  1. String id
)

The container's entire combined output, from the start.

WaitFor.logMessage needs this rather than logTail: a suite that joins an already-running, shared container has to be able to find a message that was printed before it arrived, and a tail could have scrolled past it.

Implementation

Future<String> logs(String id);