From ef065d112fb6b84c3768e24eb107bd5e9f5cd3a3 Mon Sep 17 00:00:00 2001
From: Tim Abbott <tabbott@humbughq.com>
Date: Thu, 8 Nov 2012 13:39:09 -0500
Subject: [PATCH] check-mirroring: Move some prints to be conditional on
 "verbose".

(imported from commit 90db591f5fc3e4d1f830ed16bca9380a3a9dddd3)
---
 bots/check-mirroring | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/bots/check-mirroring b/bots/check-mirroring
index 87a5da30..bc8bd94b 100755
--- a/bots/check-mirroring
+++ b/bots/check-mirroring
@@ -68,7 +68,8 @@ if child_pid == 0:
             "content": str(hzkey2),
             "stream": "tabbott-nagios-test",
             });
-    print "Sent Humbug messages!"
+    if options.verbose:
+        print "Sent Humbug messages!"
     time.sleep(0.5)
 
     import zephyr
@@ -85,7 +86,8 @@ if child_pid == 0:
                           cls="tabbott-nagios-test", instance="test")
     zeph.setmessage("%s\0%s" % (zsig, zhkey2))
     zeph.send()
-    print "Sent Zephyr messages!"
+    if options.verbose:
+        print "Sent Zephyr messages!"
 
 
 else:
@@ -99,7 +101,8 @@ else:
     max_message_id = humbug_client.get_profile()['max_message_id']
 
     time.sleep(10)
-    print "Receiving messages!"
+    if options.verbose:
+        print "Receiving messages!"
     notices = []
     while True:
         notice = zephyr.receive(block=False)