Skip to content

Commit 5a143c2

Browse files
committed
fix(registry): Remove logging
1 parent 2d1436b commit 5a143c2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

host/registry.ts

-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ function addHandler(type: keyof HandlerTypes, handler: HttpHandler) {
2121
}
2222

2323
export function getHandlers(type: keyof HandlerTypes) {
24-
console.log("All handlers: ", handlers)
2524
return (handlers[type] ?? []) as HttpHandler[]
2625
}
2726

@@ -133,7 +132,6 @@ export function registerHttpHandler(
133132
configOrHandler: HandlerConfiguration | Handler,
134133
fn?: Handler,
135134
): void {
136-
console.log(`Register handler: ${method} /${path}`)
137135
if (typeof configOrHandler === 'function') {
138136
httpHostRegistry(getMetadata(), undefined, method, path, configOrHandler)
139137
} else {

0 commit comments

Comments
 (0)