易于在测试中发现调试输出
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了易于在测试中发现调试输出相关的知识,希望对你有一定的参考价值。
Put this in `test_helper.rb` and call with `show(object1, object2, etc.)`
def show(*entries) # used to preceed logger output to make it easier to find puts "e[1;32m INSPECTING: #{Time.now} e[0m" entries.each do |entry| puts "e[1;31m #{entry.inspect}e[0m" end end
以上是关于易于在测试中发现调试输出的主要内容,如果未能解决你的问题,请参考以下文章
谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js