Jeff Hansen

Results 142 comments of Jeff Hansen

This is spot on. People understand middleware and is a generic way to solve a lot of use cases such as excluding and only including certain fields. I have written...

@TomFrost ah, didn't think about that, I didnt use those options so I assume they meant filtering the log data which is exactly what middleware would let you do. All...

That's totally fair, making syslog the default is reasonable I'd say.

That is a good point @dandv - i think adding a dispose function that returns a promise when all loggers have been disposed (up to the target implementation to resolve...

@MarkHerhold Palin is amazing, makes me want to log more things!

As a temporary trick to accomplish this: ```js /** * Creates a child logger from the specified parent. * * @param parentLogger */ export function createChildLogger(parentLogger) { const child =...

@TomFrost are you going to merge this any time soon? :)

The expected behavior is that Intercept will intercept form submissions, but only if they have no actions defined. In Edge, no action means action = current url, and so Intercept...

This is what I did to fix the issue on my end. ``` // In case Intercept does not catch things for forms (in Edge), // use our own handler....

I have yet to actually use ESM myself so I don’t know much about it; would doing this be considered a breaking change?