Add --bypass-hooks option to git_sync_cl_chain.py

Change-Id: I14c82b9684df1cc4a4f4f0f1b12e22af1eed027b
diff --git a/tools/utils.py b/tools/utils.py
index 1fb323f..ecd172c 100644
--- a/tools/utils.py
+++ b/tools/utils.py
@@ -209,6 +209,8 @@
     self._quiet = quiet
 
   def log(self, text):
+    if len(text.strip()) == 0:
+      return
     if self._quiet:
       if self._has_printed:
         sys.stdout.write(ProgressLogger.UP + ProgressLogger.CLEAR_LINE)