diff options
author | Tim Smith <tsmith84@gmail.com> | 2016-05-09 20:46:11 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2017-02-23 12:56:52 -0800 |
commit | 423c550f1d1d77912a5709aa06af48cf2620e511 (patch) | |
tree | 5d04216dc97334048499ea924b3964707ae9988e | |
parent | 6cab24734fc11b0c4f91211147f5785dd458bb80 (diff) | |
download | ohai-423c550f1d1d77912a5709aa06af48cf2620e511.tar.gz |
Match the format of the other loggers
-rw-r--r-- | lib/ohai/plugins/digital_ocean.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ohai/plugins/digital_ocean.rb b/lib/ohai/plugins/digital_ocean.rb index a9162a2f..d6309c0d 100644 --- a/lib/ohai/plugins/digital_ocean.rb +++ b/lib/ohai/plugins/digital_ocean.rb @@ -31,11 +31,11 @@ Ohai.plugin(:DigitalOcean) do if File.exist?(DO_CLOUD_INIT_FILE) datasource = YAML.load_file(DO_CLOUD_INIT_FILE) if datasource["datasource_list"].include?("DigitalOcean") - Ohai::Log.debug("digital_ocean plugin: has_do_init? == true") + Ohai::Log.debug("Plugin DigitalOcean: has_do_init? == true") true end else - Ohai::Log.debug("digital_ocean plugin: has_do_init? == false") + Ohai::Log.debug("Plugin DigitalOcean: has_do_init? == false") false end end |