1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00

only silence thin when not debugging

This commit is contained in:
Thomas Reynolds 2011-11-11 12:31:28 -08:00
parent cd63ec2248
commit 7dbc7d680a

View file

@ -55,10 +55,6 @@
libdir = File.dirname(__FILE__)
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
# Quiet down Thin
require "thin"
::Thin::Logging.silent = true
# We're riding on Sinatra, so let's include it.
require "sinatra/base"
@ -200,6 +196,9 @@ module Middleman
app_class = options[:app] ||= ::Middleman.server.new
opts[:app] = app_class
opts[:server] = 'thin'
require "thin"
::Thin::Logging.silent = true if options[:debug] != "true"
server = ::Rack::Server.new(opts)
server.start