Skip to content

Commit 28645ca

Browse files
committed
refactor: remove debug logging from registry merging for cleaner output
1 parent 450ed66 commit 28645ca

File tree

1 file changed

+0
-5
lines changed
  • packages/event-handler/src/appsync-graphql

1 file changed

+0
-5
lines changed

packages/event-handler/src/appsync-graphql/Router.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,8 @@ class Router {
7373
* @param router - The source router whose registries will be merged into this router
7474
*/
7575
protected mergeRegistriesFrom(router: Router): void {
76-
this.logger.debug('Merging route handler registries');
7776
this.resolverRegistry.merge(router.resolverRegistry);
78-
79-
this.logger.debug('Merging batch route handler registries');
8077
this.batchResolverRegistry.merge(router.batchResolverRegistry);
81-
82-
this.logger.debug('Merging exception handler registries');
8378
this.exceptionHandlerRegistry.merge(router.exceptionHandlerRegistry);
8479
}
8580

0 commit comments

Comments
 (0)