diff options
author | Ben Howard <ben.howard@ubuntu.com> | 2013-09-26 08:21:35 -0600 |
---|---|---|
committer | usd-importer <ubuntu-server@lists.ubuntu.com> | 2013-09-30 19:23:28 +0000 |
commit | 8ae1cdb8333c87208331bfbe9afc76c41f8062b4 (patch) | |
tree | 5279894cc2c79110bb79a56f85d74924b1c175f4 | |
parent | f4f9d7e17f1638d9499df663d515508f04682dc1 (diff) | |
download | vyos-walinuxagent-8ae1cdb8333c87208331bfbe9afc76c41f8062b4.tar.gz vyos-walinuxagent-8ae1cdb8333c87208331bfbe9afc76c41f8062b4.zip |
Use the proper log faculty for verbose logging (LP: #1193404).
Gbp-Pq: verbose_logging.patch.
-rw-r--r-- | waagent | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -456,7 +456,7 @@ def NoLog(message): def LogIfVerbose(message): if Verbose == True: - LogFileWithPrefix('',message) + LogWithPrefix('',message) def LogWithPrefixIfVerbose(prefix, message): if Verbose == True: |