Start watches at application startup

Change-Id: Id4157b9f40c80c5bb7d54d10f74ba7ecdeb199e5
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/src/main.cpp b/src/main.cpp
index 885d843..00d7200 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -23,6 +23,11 @@
 
     phosphor::dbus::monitoring::Monitor monitor(bus);
 
+    for (auto& watch : phosphor::dbus::monitoring::ConfigPropertyWatches::get())
+    {
+        watch->start();
+    }
+
     // Keep application running
     while (true)
     {