static public Method

Logging.open() { || ... }

There's no documentation for this item.

Source Code

# File mkmf.rb, line 175
def self::open
  @log ||= File::open(@logfile, 'w')
  @log.sync = true
  $stderr.reopen(@log)
  $stdout.reopen(@log)
  yield
ensure
  $stderr.reopen(@orgerr)
  $stdout.reopen(@orgout)
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.