Class: Chef::Provider::Log::ChefLog
- Inherits:
-
Chef::Provider
- Object
- Chef::Provider
- Chef::Provider::Log::ChefLog
- Defined in:
- lib/chef/provider/log.rb
Overview
Chef log provider, allows logging to chef’s logs from recipes
Instance Attribute Summary
Attributes inherited from Chef::Provider
#action, #current_resource, #new_resource, #run_context
Instance Method Summary collapse
-
#action_write ⇒ Object
Write the log to Chef’s log.
-
#load_current_resource ⇒ Object
No concept of a ‘current’ resource for logs, this is a no-op.
Methods inherited from Chef::Provider
#action_nothing, build_from_file, #cleanup_after_converge, #converge, #cookbook_name, #define_resource_requirements, #events, #initialize, #node, #process_resource_requirements, #requirements, #resource_collection, #run_action, #whyrun_mode?, #whyrun_supported?
Methods included from Mixin::ConvertToClassName
#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #snake_case_basename
Methods included from Mixin::EnforceOwnershipAndPermissions
#access_controls, #enforce_ownership_and_permissions
Methods included from Mixin::RecipeDefinitionDSLCore
Methods included from Mixin::Language
#data_bag, #data_bag_item, #platform?, #platform_family?, #search, #value_for_platform, #value_for_platform_family
Constructor Details
This class inherits a constructor from Chef::Provider
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Chef::Mixin::RecipeDefinitionDSLCore
Instance Method Details
#action_write ⇒ Object
Write the log to Chef’s log
Return
- true
-
Always return true
40 41 42 43 |
# File 'lib/chef/provider/log.rb', line 40 def action_write Chef::Log.send(@new_resource.level, @new_resource.name) @new_resource.updated_by_last_action(true) end |
#load_current_resource ⇒ Object
No concept of a ‘current’ resource for logs, this is a no-op
Return
- true
-
Always return true
32 33 34 |
# File 'lib/chef/provider/log.rb', line 32 def load_current_resource true end |