aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorPhill Baker <phillbaker@retrodict.com>2015-02-15 21:38:08 -0500
committerPhill Baker <phillbaker@retrodict.com>2015-02-16 12:28:58 -0500
commite2530cad68658a017dd6cbc0eb756fa6fd6e53da (patch)
treea15e0b3170c330cf0f1c2aeed5d3323f3507a8b6 /railties
parentb824dfd44bf2dd932d6d955ac868af1020f0099a (diff)
downloadrails-e2530cad68658a017dd6cbc0eb756fa6fd6e53da.tar.gz
rails-e2530cad68658a017dd6cbc0eb756fa6fd6e53da.tar.bz2
rails-e2530cad68658a017dd6cbc0eb756fa6fd6e53da.zip
Remove unused Rails::Server#log_path
With refactors to Rails::Sever from v3 to v4, this method is no longer used and is untested. Previous usage: https://github.com/rails/rails/blob/3-2-stable/railties/lib/rails/commands/server.rb#L79 Currently set from: https://github.com/rails/rails/blob/7b75551a1a4539876f878f37a2439cd02f89d961/railties/lib/rails/application/configuration.rb#L69
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/commands/server.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/railties/lib/rails/commands/server.rb b/railties/lib/rails/commands/server.rb
index bc8f1a8dea..546d3725d8 100644
--- a/railties/lib/rails/commands/server.rb
+++ b/railties/lib/rails/commands/server.rb
@@ -91,10 +91,6 @@ module Rails
Hash.new(middlewares)
end
- def log_path
- "log/#{options[:environment]}.log"
- end
-
def default_options
super.merge({
Port: 3000,