How do I log the entire trace back of a Ruby exception using the default Rails logger?

后端 未结 7 700
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-01-31 08:29

I am working on rails project and I am trying to get exceptions to be logged to the rails log files. I know I can call logger.error $! to get the first line of the

7条回答
  •  不思量自难忘°
    2021-01-31 08:50

    You can also use ruby's default variables, like this:

    logger.error "Your error message. Exception message:#{$!} Stacktrace:#{$@}"
    

提交回复
热议问题