How to silence thin boot messages

Each time thin Show archive.org snapshot boots, it prints a boot message :

Thin web server (v1.6.3 codename Protein Powder)
Maximum connections set to 1024
Listening on localhost:36309, CTRL+C to stop

If you are running parallel tests with thin, this will clutter you output. Disable thin logging with these lines:

# e.g. in features/support/thin.rb

require 'thin'
Thin::Logging.silent = true

Note that this disables all logging in tests. Instead, you also might set a different logger with Thin::Logging.logger = <your logger>. See Thin::Logging Show archive.org snapshot for details.

Dominik Schöler