mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 19:31:26 -07:00
Ansible.Basic - fix deprecate return value (#48908)
This commit is contained in:
parent
8e6c3b06b8
commit
e62edfc796
2 changed files with 3 additions and 3 deletions
|
@ -242,7 +242,7 @@ namespace Ansible.Basic
|
|||
|
||||
public void Deprecate(string message, string version)
|
||||
{
|
||||
deprecations.Add(new Dictionary<string, string>() { { "message", message }, { "version", version } });
|
||||
deprecations.Add(new Dictionary<string, string>() { { "msg", message }, { "version", version } });
|
||||
LogEvent(String.Format("[DEPRECATION WARNING] {0} {1}", message, version));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue