treasure-data / serverengine

A framework to implement robust multiprocess servers like Unicorn
Apache License 2.0
756 stars 85 forks source link

Suppress needless log output while testing #137

Closed ashie closed 1 year ago

ashie commented 1 year ago

Although many logs are output to console while running bundle exec rake spec, most of them aren't need to show. Such verbose output is confusing for finding messages of real issues.

In addion, output them to a file is convenient to check log messages in unit tests.

ashie commented 1 year ago

Thanks!