문제

This is a basic question but I'm not sure what the syntax is for passing in the stream option to the arguments in connect logger middleware.

http://senchalabs.github.com/connect/middleware-logger.html

Is it?:

connect.logger('default', myLogger)

And if I wanted to log it to loggly, would I pass in the Loggly object? What interface would it have to implement?

도움이 되었습니까?

해결책

ok figured it out..

connect.logger(format: 'short', stream:Logger)

And in the Logger object implement a method called "write"

exports.write = (msg) ->
    process.stdout.write msg
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top