Output environment in verbose mode
This commit is contained in:
parent
1a23ab3938
commit
fd88e50db6
|
@ -9,7 +9,7 @@ require 'middleman-core/logger'
|
||||||
module Middleman
|
module Middleman
|
||||||
module PreviewServer
|
module PreviewServer
|
||||||
class << self
|
class << self
|
||||||
attr_reader :app, :host, :port, :ssl_certificate, :ssl_private_key
|
attr_reader :app, :host, :port, :ssl_certificate, :ssl_private_key, :environment
|
||||||
delegate :logger, to: :app
|
delegate :logger, to: :app
|
||||||
|
|
||||||
def https?
|
def https?
|
||||||
|
@ -22,6 +22,8 @@ module Middleman
|
||||||
@options = opts
|
@options = opts
|
||||||
|
|
||||||
mount_instance(new_app)
|
mount_instance(new_app)
|
||||||
|
|
||||||
|
logger.debug %(== The Middleman is running in "#{environment}" environment)
|
||||||
logger.info "== The Middleman is standing watch at #{uri} (#{uri(public_ip)})"
|
logger.info "== The Middleman is standing watch at #{uri} (#{uri(public_ip)})"
|
||||||
logger.info "== Inspect your site configuration at #{uri + '__middleman'}"
|
logger.info "== Inspect your site configuration at #{uri + '__middleman'}"
|
||||||
|
|
||||||
|
@ -121,6 +123,7 @@ module Middleman
|
||||||
@host = @app.config[:host]
|
@host = @app.config[:host]
|
||||||
@port = @app.config[:port]
|
@port = @app.config[:port]
|
||||||
@https = @app.config[:https]
|
@https = @app.config[:https]
|
||||||
|
@environment = @app.config[:environment]
|
||||||
|
|
||||||
@ssl_certificate = @app.config[:ssl_certificate]
|
@ssl_certificate = @app.config[:ssl_certificate]
|
||||||
@ssl_private_key = @app.config[:ssl_private_key]
|
@ssl_private_key = @app.config[:ssl_private_key]
|
||||||
|
|
Loading…
Reference in a new issue