0

次のコードがあり、実行時に生成されたエラーをログ ファイルに書き込みたいと考えています。

どうすればレールでそれを行うことができますか?

def get_score
 if status == "approved" 
       begin 
          metrics = Popularity.get_metrics(url,nil ,:resource)

            update_column(:metrics, metrics.to_yaml)
            update_column(:score,Popularity.score(metrics,:resource ))
            reputation = reputations.build(:metrics => metrics)
            reputation.score = score
            reputation.save

       rescue
       #write the error that was raised to a log file
       end   
    end
4

1 に答える 1

0

これはどう

 def get_score
  if status == "approved" 
       begin 
          metrics = Popularity.get_metrics(url,nil ,:resource)

            update_column(:metrics, metrics.to_yaml)
            update_column(:score,Popularity.score(metrics,:resource ))
            reputation = reputations.build(:metrics => metrics)
            reputation.score = score
            reputation.save

       rescue => e
          Rails.logger.debug "Opps Error Occurred -- > #{e} "
       end   
    end

Rails.logger.debugエラーをlog/[your environment].log

debugタグを使用して、代わりに使用することもできます

Rails.logger.info "Opps Error Occurred -- > #{e} "

于 2012-10-28T15:53:26.983 に答える