We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c126a9 commit 621ff39Copy full SHA for 621ff39
packages/testcontainers/src/wait-strategies/log-wait-strategy.ts
@@ -31,7 +31,6 @@ export class LogWaitStrategy extends AbstractWaitStrategy {
31
32
let matches = 0;
33
for await (const chunk of stream) {
34
- console.log(chunk)
35
if (this.matches(chunk)) {
36
if (++matches === this.times) {
37
return log.debug(`Log wait strategy complete`, { containerId: container.id });
0 commit comments