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

后端 未结 7 699
爱一瞬间的悲伤
爱一瞬间的悲伤 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 09:17

    logger.error caller.join("\n") should do the trick.

    0 讨论(0)
提交回复
热议问题