diff options
author | Chris Patterson <cpatterson@microsoft.com> | 2022-02-07 11:17:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 10:17:38 -0600 |
commit | 339c3b0977363afcf160c564cbf446c4093525fb (patch) | |
tree | 19f70359bd55c63f40bed1a5f27b1ef8ff967651 | |
parent | a804c108f51c806f1aa91a127433fcc3d8f8a78f (diff) | |
download | vyos-cloud-init-339c3b0977363afcf160c564cbf446c4093525fb.tar.gz vyos-cloud-init-339c3b0977363afcf160c564cbf446c4093525fb.zip |
sources/azure: drop debug print (#1249)
Remove debug print that snuck in on a previous fixup.
Signed-off-by: Chris Patterson <cpatterson@microsoft.com>
-rwxr-xr-x | cloudinit/sources/helpers/azure.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cloudinit/sources/helpers/azure.py b/cloudinit/sources/helpers/azure.py index 1a8cd34f..8e8f5ce5 100755 --- a/cloudinit/sources/helpers/azure.py +++ b/cloudinit/sources/helpers/azure.py @@ -214,7 +214,6 @@ def report_diagnostic_event( msg: str, *, logger_func=None ) -> events.ReportingEvent: """Report a diagnostic event""" - print(msg) if callable(logger_func): logger_func(msg) evt = events.ReportingEvent( |