conman: Periodically log lowest-metric default route.

This is required for analytics related to WifiSimulateWireless, when
we want to know if the device is using a wireless route or a (low
priority/high metric) wired route.

Change-Id: I4e636c4d4897303343c302238ada383d3705dbe7
diff --git a/conman/connection_manager.py b/conman/connection_manager.py
index 040e812..858f338 100755
--- a/conman/connection_manager.py
+++ b/conman/connection_manager.py
@@ -598,6 +598,8 @@
     if lowest_metric_interface:
       ip = lowest_metric_interface[1].get_ip_address()
       ip_line = '%s %s\n' % (ip, HOSTNAME) if ip else ''
+      logging.info('Lowest metric default route is on dev %r',
+                   lowest_metric_interface[1].name)
 
     new_tmp_hosts = '%s127.0.0.1 localhost' % ip_line