Details
Description
It would be helpful for creating cookbooks if there was a intermediary log level between INFO and DEBUG. For my simple recipe, the output jumps from 2 lines with info to 1185 lines with debug.
root@domU-12-31-39-01-A8-93:~# sudo chef-solo -j ~/test.json -r http://127.0.0.1/recipes.tar.gz --log_level warn | wc -l
0
root@domU-12-31-39-01-A8-93:~# sudo chef-solo -j ~/test.json -r http://127.0.0.1/recipes.tar.gz --log_level info | wc -l
2
root@domU-12-31-39-01-A8-93:~# sudo chef-solo -j ~/test.json -r http://127.0.0.1/recipes.tar.gz --log_level debug | wc -l
1185
I expect what we actually want here is to move some of the debugging upto info