Decrease log level on missing DDL file messages in the agent from warning to debug as at present there's no real reason for them to exist on the servers anyway.
Signed-off-by: R.I.Pienaar <[email protected]> --- Local-branch: bug/master/7961 lib/mcollective/rpc/agent.rb | 2 +- website/changelog.md | 1 + 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/lib/mcollective/rpc/agent.rb b/lib/mcollective/rpc/agent.rb index 64e3e11..5efcb5c 100644 --- a/lib/mcollective/rpc/agent.rb +++ b/lib/mcollective/rpc/agent.rb @@ -61,7 +61,7 @@ module MCollective begin @ddl = DDL.new(@agent_name) rescue Exception => e - Log.warn("Failed to load DDL for agent: #{e.class}: #{e}") + Log.debug("Failed to load DDL for agent: #{e.class}: #{e}") @ddl = nil end diff --git a/website/changelog.md b/website/changelog.md index 4059b93..08fb06c 100644 --- a/website/changelog.md +++ b/website/changelog.md @@ -11,6 +11,7 @@ title: Changelog |Date|Description|Ticket| |----|-----------|------| +|2011/06/21|On the server side log missing DDL files at debug and not warning level|7961| |2011/06/16|Add the ability for nodes to subscribe to per-node queues, off by default|7225| |2011/06/12|Remove assumptions about middleware structure from the core and move it to the connector plugins|7619| |*2011/06/08*|*Release 1.3.0*|7796| -- 1.7.1 -- You received this message because you are subscribed to the Google Groups "Puppet Developers" 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-dev?hl=en.
