Change CrashdumpComplete signal interface

The CrashdumpComplete signal now comes in on the com.intel.crashdump
interface, so this updates the match to catch it.

Tested:
Injected an error and confirmed that the CrashdumpComplete match is
triggered.

Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com>
Change-Id: I926c27f2b00420667bbd8f40a52e88be7713ce42
diff --git a/include/host_error_monitor.hpp b/include/host_error_monitor.hpp
index 8a3d90b..eacb1cb 100644
--- a/include/host_error_monitor.hpp
+++ b/include/host_error_monitor.hpp
@@ -78,7 +78,7 @@
     {
         crashdumpCompleteMatch = std::make_shared<sdbusplus::bus::match::match>(
             *conn,
-            "type='signal',interface='com.intel.crashdump.Stored',member='"
+            "type='signal',interface='com.intel.crashdump',member='"
             "CrashdumpComplete'",
             [conn](sdbusplus::message::message& msg) {
                 std::cerr << "Crashdump completed\n";