only silence thin when not debugging
This commit is contained in:
parent
cd63ec2248
commit
7dbc7d680a
1 changed files with 3 additions and 4 deletions
|
@ -55,10 +55,6 @@
|
||||||
libdir = File.dirname(__FILE__)
|
libdir = File.dirname(__FILE__)
|
||||||
$LOAD_PATH.unshift(libdir) unless $LOAD_PATH.include?(libdir)
|
$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.
|
# We're riding on Sinatra, so let's include it.
|
||||||
require "sinatra/base"
|
require "sinatra/base"
|
||||||
|
|
||||||
|
@ -200,6 +196,9 @@ module Middleman
|
||||||
app_class = options[:app] ||= ::Middleman.server.new
|
app_class = options[:app] ||= ::Middleman.server.new
|
||||||
opts[:app] = app_class
|
opts[:app] = app_class
|
||||||
opts[:server] = 'thin'
|
opts[:server] = 'thin'
|
||||||
|
|
||||||
|
require "thin"
|
||||||
|
::Thin::Logging.silent = true if options[:debug] != "true"
|
||||||
|
|
||||||
server = ::Rack::Server.new(opts)
|
server = ::Rack::Server.new(opts)
|
||||||
server.start
|
server.start
|
||||||
|
|
Loading…
Add table
Reference in a new issue