Skip to content

Commit 9d8e7c3

Browse files
authored
fix: remove rogue console.log (#267)
1 parent 7317a41 commit 9d8e7c3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/module-declaration.ts

-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,6 @@ export const generateModuleDeclaration = (
6363
) {
6464
extendsInfo = ` extends ${isClass ? 'NodeEventEmitter' : 'NodeJS.EventEmitter'}`;
6565
}
66-
if (module.name.toLowerCase() === 'session' && isStaticVersion) {
67-
console.log({ isStaticVersion, instanceModuleForStaticVersion, extendsInfo });
68-
}
6966
if (extendsInfo) {
7067
moduleAPI.push(
7168
`${isClass ? 'class' : 'interface'} ${_.upperFirst(module.name)}${extendsInfo} {`,

0 commit comments

Comments
 (0)