0
這是我的代碼:廚師 - 打印日誌在發言結束時,如果源無效
if node['app']['source']
src = "#{node['app']['source']}\\#{node['app']['file_name']}"
else
src = "second_source"
end
我想在發言結束時任何源ISN的情況下添加一個log.warn 「T有效, 是這樣的:
if node['app']['source']
src = "#{node['app']['source']}\\#{node['app']['file_name']}"
else
src = "second_source"
whatever
Chef::Log.warn "This path #{src} is not supported, check attributes again"
return
end
我會很高興,如果有人有什麼想法, 謝謝...
check out [this](http://stackoverflow.com/a/948157/1184717) – MrRoth