How to redirect your Rails logs somewhere

Sometimes you might want to have your logs at designated logging service, like logbook.me or logworm.com, because for example, your hosting environment is limited in keeping logs, like Heroku. At least one solution you could try is a setting config.logger...

Tagged Logger Introduction

If you want to log something then what do you do? If you are writing Rails code the answer is obvious - Rails#logger, but if it is something which could be potentially not a part of Rails application? Is that...