fix: remove extra console.log

This commit is contained in:
Ben Allfree
2023-10-19 09:58:58 -07:00
parent b33750564d
commit cbc5448d20

View File

@@ -70,7 +70,6 @@ export const proxyService = mkSingleton(async (config: ProxyServiceConfig) => {
)
for (let i = 0; i < middleware.length; i++) {
const m = middleware[i]!
console.log(`Executing middleware`)
const handled = await m(req, res)
if (handled) break
}