summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom May <thom@clearairturbulence.org>2015-03-17 10:30:09 +0000
committerThom May <thom@clearairturbulence.org>2015-03-17 10:30:09 +0000
commit576b45348fd975f1ded026ed45c6d83967e1a85c (patch)
tree854b0bd0cbe6c5a7f8b67c85e96839fe3a2f5677
parentcade6e3440badf2f43b3032b802a7b60c7b087db (diff)
parenta18901c75e7de1689ecba8ad16793e3a8d0292ab (diff)
downloadchef-576b45348fd975f1ded026ed45c6d83967e1a85c.tar.gz
Merge pull request #3061 from cmluciano/cml/inspecttostring
Change inspect to string to be more human-readable.
-rw-r--r--lib/chef/node.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/node.rb b/lib/chef/node.rb
index f9f6416f14..9823185ede 100644
--- a/lib/chef/node.rb
+++ b/lib/chef/node.rb
@@ -323,7 +323,7 @@ class Chef
if attrs.key?("recipes") || attrs.key?("run_list")
raise Chef::Exceptions::AmbiguousRunlistSpecification, "please set the node's run list using the 'run_list' attribute only."
end
- Chef::Log.info("Setting the run_list to #{new_run_list.inspect} from CLI options")
+ Chef::Log.info("Setting the run_list to #{new_run_list.to_s} from CLI options")
run_list(new_run_list)
end
attrs