Router rhai logging: Hide request context from output

Hello, i’m currently working on implementing rhai logging in my router service. I simply want my logs to output only a selection of request headers, but currently using service.map_request() the request.context.method is also output in my logs. I’m wondering if there is a way to hide this from the output/overwrite to be blank? Any help would be greatly appreciated!

Example:
Desired: “INFO Graph Request. HeaderX = a, HeaderY = b, HeaderZ = c”
Current: INFO request(method=POST uri=/ … query… etc) Graph Request. HeaderX = a, HeaderY = b, HeaderZ = c"