Change 'shutdown took longer than 30s' to INFO from WARN.

This has been happening for a long time and no one currently has the
bandwidth to investigate the problem. Downgrading the message to INFO
for the time being.

TEST=autoserv reboot test causing the INFO line to be added to a status
line.
BUG=chromium:305690

Change-Id: I477a5e85782fabaf59042a4d6f90eedfdbede8e4
Reviewed-on: https://chromium-review.googlesource.com/174281
Tested-by: Scott Zawalski <[email protected]>
Reviewed-by: Aviv Keshet <[email protected]>
Reviewed-by: Scott Zawalski <[email protected]>
Commit-Queue: Scott Zawalski <[email protected]>
diff --git a/server/hosts/abstract_ssh.py b/server/hosts/abstract_ssh.py
index 8c9ca86..03f56d0 100644
--- a/server/hosts/abstract_ssh.py
+++ b/server/hosts/abstract_ssh.py
@@ -530,7 +530,7 @@
                     return True
 
             if warning_timer and current_time > warn_time:
-                self.record("WARN", None, "shutdown",
+                self.record("INFO", None, "shutdown",
                             "Shutdown took longer than %ds" % warning_timer)
                 # Print the warning only once.
                 warning_timer = None