2008年6月16日星期一

config my logger

config/environment.rb:
$my_logger = Logger.new("#{RAILS_ROOT}/log/my.log")
其实感觉放在config/environments/development.rb中更好,毕竟一般的调试信息只在开发时需要。

controller:
$my_logger.info("hello")

打印到控制台:
Logger.new(STDOUT).info("display in the console")
打印到开发日志文件:
logger.info("display in the development.log")

没有评论: