Ruby 调试输出 - 轻松打开/关闭
当我在 Erlang 中编写草稿和实验代码时,我通常使用以下方法:
%%% Switch debugging output on/off:
-define(DBG(Str, Args), ok).
%-define(DBG(Str, Args), io:format(Str, Args)).
仅注释掉一行代码即可打开和关闭到控制台的调试输出。
?DBG("DEBUG: The function started ~n", [])
因此我可以在代码中大量使用注释。
Ruby 中是否存在类似的东西?
When I write draft and experimental code in Erlang I usually use this:
%%% Switch debugging output on/off:
-define(DBG(Str, Args), ok).
%-define(DBG(Str, Args), io:format(Str, Args)).
Commenting out just one line of code switches the debugging output to the console on and off.
?DBG("DEBUG: The function started ~n", [])
Thus I can use commenting in the code heavily.
Does something similar exist in Ruby?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Ruby Learning 的有关日志记录的部分可能会有所帮助。
Ruby Learning's section on logging might be helpful.