File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ export function createHonoHandler(options: HonoOptions): MiddlewareHandler {
5252 prisma,
5353 modelMeta,
5454 zodSchemas,
55+ logger : options . logger ,
5556 } ) ;
5657 return ctx . json ( r . body as object , r . status as StatusCode ) ;
5758 } catch ( err ) {
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ export function createEventHandler(options: HandlerOptions) {
5050 prisma,
5151 modelMeta,
5252 zodSchemas,
53+ logger : options . logger ,
5354 } ) ;
5455
5556 setResponseStatus ( event , status ) ;
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ export default function createHandler(options: HandlerOptions): Handle {
6262 prisma,
6363 modelMeta,
6464 zodSchemas,
65+ logger : options . logger ,
6566 } ) ;
6667
6768 return new Response ( JSON . stringify ( r . body ) , {
You can’t perform that action at this time.
0 commit comments