I have a application written in Ruby which generates a log on STDOUT. The application would be running in multiple processes but I need to collate logs generated from each of the process into a single file. Is it possible?
I read somewhere that Syslog can be used for this but I am not sure how it can be used.
I finally decided to use log4r. It can collate logs from different processes and add them to the same log file.