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 d623522 commit a883902Copy full SHA for a883902
packages/testcontainers/src/container-runtime/clients/client.ts
@@ -55,7 +55,10 @@ export async function getContainerRuntimeClient(): Promise<ContainerRuntimeClien
55
return client;
56
}
57
} catch (err) {
58
- log.debug(`Container runtime strategy "${strategy.getName()}" does not work: ${err}`);
+ log.debug(`Container runtime strategy "${strategy.getName()}" does not work: "${err}"`);
59
+ if (err !== null && typeof err === "object" && "stack" in err && typeof err.stack === "string") {
60
+ log.debug(err.stack);
61
+ }
62
63
64
throw new Error("Could not find a working container runtime strategy");
0 commit comments