Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 7023

Show
Ignore:
Timestamp:
06/14/07 15:18:36 (1 year ago)
Author:
minam
Message:

default the logger output to $stderr rather than STDERR (closes #8347)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tools/capistrano/CHANGELOG

    r7008 r7023  
    11*SVN* 
     2 
     3* Logger defaults to $stderr instead of STDERR [lhartley] 
    24 
    35* Use cp -RPp instead of -a in the remote cache strategy 
  • tools/capistrano/lib/capistrano/logger.rb

    r6315 r7023  
    1212 
    1313    def initialize(options={}) 
    14       output = options[:output] || STDERR 
     14      output = options[:output] || $stderr 
    1515      if output.respond_to?(:puts) 
    1616        @device = output