monitor: Write fan presence changes to journal

These traces were already there, they were just saved in the trace
buffer because the thinking was fan-presence would already write it to
the journal.  That isn't the case though, if fan-monitor is enabled to
handle fan presence errors, then fan-presence won't be, so it won't
trace things either.

Signed-off-by: Matt Spinler <spinler@us.ibm.com>
Change-Id: I439eed79b72bfb8f5dd83aadc73fecf3e0de0849
diff --git a/monitor/fan.cpp b/monitor/fan.cpp
index 58730da..7905b78 100644
--- a/monitor/fan.cpp
+++ b/monitor/fan.cpp
@@ -131,10 +131,8 @@
 
         if (!_present && available)
         {
-            // The fan presence application handles the journal for missing
-            // fans, so only internally log missing fan info here.
-            getLogger().log(fmt::format("On startup, fan {} is missing", _name),
-                            Logger::quiet);
+            getLogger().log(
+                fmt::format("On startup, fan {} is missing", _name));
             _fanMissingErrorTimer->restartOnce(
                 std::chrono::seconds{*_fanMissingErrorDelay});
         }
@@ -329,8 +327,7 @@
         _present = std::get<bool>(presentProp->second);
 
         getLogger().log(
-            fmt::format("Fan {} presence state change to {}", _name, _present),
-            Logger::quiet);
+            fmt::format("Fan {} presence state change to {}", _name, _present));
 
         _system.fanStatusChange(*this);