public
Description: Remote multi-server automation tool
Homepage: http://www.capify.org
Clone URL: git://github.com/jamis/capistrano.git
Search Repo:
remove trace messages when loading a recipe file


git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@5776 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
jamis (author)
Sat Dec 23 18:09:32 -0800 2006
commit  8beef00a96fbd36cd243ef7662923ff059da378f
tree    bcf18db174b73666aa2e12dd1d8d9da6d01e7783
parent  455e9d87a586878322a6263df011a37780c1be48
...
1
2
 
 
3
4
5
...
1
2
3
4
5
6
7
0
@@ -1,5 +1,7 @@
0
 *SVN*
0
 
0
+* Remove trace messages when loading a file
0
+
0
 * Cleaner error messages for authentication failures and command errors
0
 
0
 * Added support for ~/.caprc, also -x and -c switches.
...
146
147
148
149
150
151
152
153
154
155
156
...
146
147
148
 
149
150
151
 
152
153
154
0
@@ -146,11 +146,9 @@ module Capistrano
0
         load :string => File.read(file), :name => options[:name] || file
0
 
0
       elsif options[:string]
0
- logger.trace "loading configuration #{options[:name] || "<eval>"}"
0
         instance_eval(options[:string], options[:name] || "<eval>")
0
 
0
       elsif options[:proc]
0
- logger.trace "loading configuration #{eval("__FILE__", options[:proc])}"
0
         instance_eval(&options[:proc])
0
 
0
       else

Comments

    No one has commented yet.