From 15a18c18e496c8fb46ee21d8a1af0c4012abc5f5 Mon Sep 17 00:00:00 2001 From: Gaurish Sharma Date: Thu, 27 Mar 2014 16:37:47 +0530 Subject: [PATCH] Clarify environment_name for logs [ci skip] --- guides/source/debugging_rails_applications.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index 226137c89a..99f685e535 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -123,7 +123,7 @@ config.logger = Logger.new(STDOUT) config.logger = Log4r::Logger.new("Application Log") ``` -TIP: By default, each log is created under `Rails.root/log/` and the log file name is `environment_name.log`. +TIP: By default, each log is created under `Rails.root/log/` and the log file name is `environment_name.log`. example `production.log`, `development.log` etc. ### Log Levels