-
Notifications
You must be signed in to change notification settings - Fork 69
Debugging
technicalpickles edited this page Aug 19, 2010
·
1 revision
It’s bound to happen. Moonshine, or puppet, is doing something weird, but you can’t put a finger on it. Fear not, for you can get more details out of puppet, the underlying library.
Here are some snippets you can add to app/manifests/application_manifest.rb
to get a bit more detail.
# Shows a lot more information in the log
Puppet::Util::Log.level = :debug
# Shows diffs between the current state, and the state the system would go into
#Puppet[:show_diff] = true
# Only show what would happen, don't actually do it
Puppet[:noop] = true