Cosmetic changes to logging for the main daemon

Change-Id: I2102cc15d8ee9dded6d32a42b5555444f0b58187
diff --git a/vland.py b/vland.py
index 2def201..9233cb9 100755
--- a/vland.py
+++ b/vland.py
@@ -99,19 +99,19 @@
 else:
     print "Logging to %s" % state.config.logging.filename
     logging.basicConfig(level = loglevel,
-                        format = '%(asctime)s %(levelname)-8s %(message)s',
+                        format = '%(asctime)s %(levelname)-8s MAIN %(message)s',
                         datefmt = '%Y-%m-%d %H:%M:%S %Z',
                         filename = state.config.logging.filename,
                         filemode = 'a')
-    logging.info('%s starting up', state.banner)
+    logging.info('%s main daemon starting up', state.banner)
     switches = state.db.all_switches()
-    logging.info('  DB knows about %d switches', len(switches))
+    logging.info('DB knows about %d switches', len(switches))
     ports = state.db.all_ports()
-    logging.info('  DB knows about %d ports', len(ports))
+    logging.info('DB knows about %d ports', len(ports))
     vlans = state.db.all_vlans()
-    logging.info('  DB knows about %d vlans', len(vlans))
+    logging.info('DB knows about %d vlans', len(vlans))
     trunks = state.db.all_trunks()
-    logging.info('  DB knows about %d trunks', len(trunks))
+    logging.info('DB knows about %d trunks', len(trunks))
 
 # Now start up the core loop. Listen for command connections and
 # process them