generate error when host stays in quiesce

When the retries are exhausted and the host is going to be left in the
Quiesce state, log an error so the user has some clue as to what is
going on with their system.

Do not log this error when auto reboot is disabled and the system stays
in Quiesce. This is usually a debug mode and we do not want to clutter
the log with errors in this scenario.

Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: If680df66f5f6d2c4c567957b8ecc46bbaafe2286
diff --git a/host_state_manager.cpp b/host_state_manager.cpp
index 8d35a07..119c6ad 100644
--- a/host_state_manager.cpp
+++ b/host_state_manager.cpp
@@ -3,6 +3,7 @@
 #include "host_state_manager.hpp"
 
 #include "host_check.hpp"
+#include "utils.hpp"
 
 #include <stdio.h>
 #include <systemd/sd-bus.h>
@@ -244,6 +245,13 @@
                 // We are at 0 so reset reboot counter and go to quiesce state
                 info("Auto reboot enabled but HOST BOOTCOUNT already set to 0");
                 attemptsLeft(BOOT_COUNT_MAX_ALLOWED);
+
+                // Generate log since we will now be sitting in Quiesce
+                const std::string errorMsg =
+                    "xyz.openbmc_project.State.Error.HostQuiesce";
+                utils::createError(this->bus, errorMsg,
+                                   sdbusplus::xyz::openbmc_project::Logging::
+                                       server::Entry::Level::Critical);
                 return false;
             }
         }
diff --git a/meson.build b/meson.build
index be2a2ba..9f69d5e 100644
--- a/meson.build
+++ b/meson.build
@@ -77,9 +77,10 @@
             'host_state_manager_main.cpp',
             'settings.cpp',
             'host_check.cpp',
+            'utils.cpp',
             dependencies: [
             sdbusplus, sdeventplus, phosphorlogging,
-            phosphordbusinterfaces, cppfs
+            phosphordbusinterfaces, cppfs, libgpiod
             ],
     implicit_include_directories: true,
     install: true