jkanschik / node-eip

Implementation of the Enterprise Integration Patterns (EIP) for node.js
5 stars 1 forks source link

Write adapter for different logging frameworks #6

Open jkanschik opened 12 years ago

jkanschik commented 12 years ago

.log() should adapt to different frameworks.

It should also support logging levels (error, warning etc.) by creating corresponding processors: .error(...) .warn(...) .info(...) .debug(...)

.log(...) would be a synonym for .info(...) per default .log(...) excepts options for more detailed logging information, in particular the logging level or format.

jkanschik commented 12 years ago

Some available frameworks: ain: looks good Caterpillar: ? cfdump: No. flume.rpc: No. hexy: No. inspect: Dead jog: ok. log4js-node: YES. logly: No. Node-log: No. tracer: Yes. winston: maybe

jkanschik commented 12 years ago

Implemented for log4js-node.

jkanschik commented 12 years ago

Documentation missing At least one other framework should be implemented as well.