File tree Expand file tree Collapse file tree
test/tools/unified-spec-runner Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -268,7 +268,6 @@ export class UnifiedMongoClient extends MongoClient {
268268 if ( description . uriOptions && description . uriOptions . appName ) {
269269 options . appName = description . uriOptions . appName ;
270270 }
271- console . log ( `Client options appName: ${ options . appName } ` ) ; // TODO: remove before merging
272271
273272 super ( uri , options ) ;
274273 this . observedEventEmitter . on ( 'error' , ( ) => null ) ;
@@ -626,10 +625,8 @@ export class EntitiesMap<E = Entity> extends Map<string, E> {
626625 } else {
627626 uri = makeConnectionString ( config . url ( { useMultipleMongoses } ) , entity . client . uriOptions ) ;
628627 }
629- console . log ( `Client connection string ${ uri } ` ) ; // TODO: remove before merging
630628
631629 const client = new UnifiedMongoClient ( uri , entity . client , config ) ;
632- console . log ( `Client options appName: ${ client . options . appName } ` ) ; // TODO: remove before merging
633630 try {
634631 new EntityEventRegistry ( client , entity . client , map ) . register ( ) ;
635632 await client . connect ( ) ;
You can’t perform that action at this time.
0 commit comments