Is there a unified logging system for Ruby? -
i wondering if there unified logging systems out there can support rails and delayed jobs, , relatively easy set up.
i want able log same server/file execution context in application (rails, delayed jobs, etc), if i'm not in rails context.
love rails logger, can't log while in resque job. ideas?
do mean file-logger, similar syslog?
ruby's got both logger
, syslog
.
logger can log rolling, handles severity levels, , used in lot of ruby modules logging. can define name of file log to, or use stdout/stderr or io stream.
the docs syslog pretty barebones, can info browsing source code, or reading ruby syslog readme.
Comments
Post a Comment