Joe Spencer

Results 181 comments of Joe Spencer

ahh, good catch @brianwestphal . Those properties should be on the apiDoc, not the args. Can you open a PR to correct that in the README?

I'm all for this. Thoughts @MugeSo ?

@maxwellb thanks for the feedback! I don't believe this feature proposal was ever meant to sunset any existing convention. It would be an additional way to configure APIs which would...

@nahelbahel please submit a pr to add support for this.

Hmm. I see what you mean. Have any ideas? Maybe a console provider option in the initialize args?

Yea. I'd love it if you could submit a PR with support for such an interface in `.initialize(args)` @memelet .

Go for it! I would like to avoid adding interfaces from 3rd party packages if possible i.e. a simple interface with log & error methods would probably do for now

Couple of suggestions: Instead of `(message: string, ...extra: any[])` how about just `(data: any, ...args: any[])`. This matches most loggers and more specifically [nodejs's](https://nodejs.org/api/console.html#console_console_log_data_args) console methods. Instead of adding logger...