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 a178617 commit dcf9b96Copy full SHA for dcf9b96
src/index.ts
@@ -86,6 +86,12 @@ function manageBackgroundServices(
86
standalone.on('mock-session-started', async ({ http, webrtc }, sessionId) => {
87
const httpProxyPort = http.getMockServer().port;
88
89
+ console.log(`Mock session started, http on port ${
90
+ httpProxyPort
91
+ }, webrtc ${
92
+ !!webrtc ? 'enabled' : 'disabled'
93
+ }`);
94
+
95
startDockerInterceptionServices(httpProxyPort, httpsConfig, ruleParameters)
96
.catch((error) => {
97
console.log("Could not start Docker components:", error);
0 commit comments