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

Changeset 2127

Show
Ignore:
Timestamp:
09/03/05 23:05:58 (3 years ago)
Author:
david
Message:

Silence logger initialization

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/railties/environments/environment.rb

    r2115 r2127  
    66  # See Rails::Configuration for options 
    77end 
     8 
     9# Include your application configuration below 
  • trunk/railties/fresh_rakefile

    r2116 r2127  
    1 # Add your own tasks in files placed in config/tasks  
    2 # and they will automatically be available to Rake. 
     1# Add your own tasks in files placed in config/tasks ending in .rake, 
     2# for example config/tasks/switchtower.rake, and they will automatically be available to Rake. 
    33 
    44require(File.join(File.dirname(__FILE__), 'config', 'boot')) 
  • trunk/railties/lib/initializer.rb

    r2125 r2127  
    7474      end 
    7575       
     76      old_verbose, $VERBOSE = $VERBOSE, nil 
    7677      Object.const_set "RAILS_DEFAULT_LOGGER", logger 
     78      $VERBOSE = old_verbose 
    7779    end 
    7880