Sha256: e8204992f1f868fc8e9c8c97190db60e550aba28facf406f8a9248eede1c6af6
Contents?: true
Size: 641 Bytes
Versions: 40
Compression:
Stored size: 641 Bytes
Contents
require "pact_broker/configuration" # Stop Padrino creating a log file, as it will try to create it in the gems directory # http://www.padrinorb.com/api/Padrino/Logger.html unless defined? PADRINO_LOGGER log_path = File.join(PactBroker.configuration.log_dir, "ui.log") PADRINO_LOGGER = { production: { log_level: :error, stream: :to_file, log_path: log_path }, staging: { log_level: :error, stream: :to_file, log_path: log_path }, test: { log_level: :warn, stream: :to_file, log_path: log_path }, development: { log_level: :warn, stream: :to_file, log_path: log_path } } end require "pact_broker/ui/app"
Version data entries
40 entries across 40 versions & 1 rubygems