Issue #9160 has been updated by Franz Pletz. Status changed from Tests Insufficient to In Topic Branch Pending Review Assignee set to Franz Pletz % Done changed from 0 to 100 Branch set to https://github.com/puppetlabs/puppet/pull/370
I took the patch, fixed the tests and made a pull request. Ready to apply. ;) ---------------------------------------- Bug #9160: type.rb logs ridiculous information to info https://projects.puppetlabs.com/issues/9160 Author: Digant Kasundra Status: In Topic Branch Pending Review Priority: Normal Assignee: Franz Pletz Category: logging Target version: 2.7.x Affected Puppet version: 2.7.1 Keywords: Branch: https://github.com/puppetlabs/puppet/pull/370 On each puppet run, there are 5 info level logs lines PER USER for each of the useradd features that are not supported because we aren't running on Solaris or AIX. This should be a debug level log. The following patch should fix. --- type.rb.orig 2011-08-22 17:35:53.000000000 -0700 +++ type.rb 2011-08-22 17:35:00.000000000 -0700 @@ -496,7 +496,7 @@ if provider and ! provider.class.supports_parameter?(klass) missing = klass.required_features.find_all { |f| ! provider.class.feature?(f) } - info "Provider %s does not support features %s; not managing attribute %s" % [provider.class.name, missing.join(", "), name] + debug "Provider %s does not support features %s; not managing attribute %s" % [provider.class.name, missing.join(", "), name] return nil end -- You have received this notification because you have either subscribed to it, or are involved in it. To change your notification preferences, please click here: http://projects.puppetlabs.com/my/account -- You received this message because you are subscribed to the Google Groups "Puppet Bugs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
