We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5333fc5 commit f76c392Copy full SHA for f76c392
1 file changed
test/tools/runner/ee_checker.ts
@@ -19,6 +19,12 @@ events.EventEmitter = class RequireErrorListenerEventEmitter extends EventEmitte
19
return;
20
}
21
22
+ // gcp-metadata uses logging-utils whose AdhocDebugLogger extends EE
23
+ // https://github.com/googleapis/gax-nodejs/blob/acfbe801d92219693b7ea5487ef701a77657dec8/logging-utils/src/logging-utils.ts#L163
24
+ if (this.constructor.name === 'AdhocDebugLogger') {
25
+ return;
26
+ }
27
+
28
if (this.listenerCount('error') === 0) {
29
throw ctorCallSite;
30
0 commit comments