Merge "Tighten ERROR regexp in log checker"
diff --git a/tools/check_logs.py b/tools/check_logs.py
index 0c8fd21..963709b 100755
--- a/tools/check_logs.py
+++ b/tools/check_logs.py
@@ -33,7 +33,7 @@
 
 
 def process_files(file_specs, url_specs, whitelists):
-    regexp = re.compile(r"^.*(ERROR|CRITICAL).*\[.*\-.*\]")
+    regexp = re.compile(r"^.* (ERROR|CRITICAL) .*\[.*\-.*\]")
     had_errors = False
     for (name, filename) in file_specs:
         whitelist = whitelists.get(name, [])