We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2355bee commit 77225d5Copy full SHA for 77225d5
packages/compass-e2e-tests/helpers/compass.js
@@ -371,10 +371,13 @@ function getCompassBinPath({ appPath, packagerOptions: { name } }) {
371
*/
372
function addDebugger(app) {
373
const debugClient = debug.extend('webdriver:client');
374
+ // debugClient.log starts off empty for some reason
375
+ debugClient.log = console.log.bind(console);
376
const clientProto = Object.getPrototypeOf(app.client);
377
378
for (const prop of Object.getOwnPropertyNames(clientProto)) {
- if (prop.includes('.')) {
379
+ // disable emit logging for now because it is very noisy
380
+ if (prop.includes('.') || prop === 'emit') {
381
continue;
382
}
383
const descriptor = Object.getOwnPropertyDescriptor(clientProto, prop);
0 commit comments