Remove errant debug print

It's not an actual error if we don't get the initial power
status. We'll just assume power off until we capture the
properites changed event.

Change-Id: If68c17516fa9f0b012ac5e8679adaa087fe489fd
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/src/Utils.cpp b/src/Utils.cpp
index 86afb09..156f013 100644
--- a/src/Utils.cpp
+++ b/src/Utils.cpp
@@ -162,7 +162,8 @@
         [](boost::system::error_code ec, const std::variant<int32_t>& pgood) {
             if (ec)
             {
-                std::cerr << "Error getting initial power status\n";
+                // we commonly come up before power control, we'll capture the
+                // property change later
                 return;
             }
             powerStatusOn = std::get<int32_t>(pgood);