logging: Add separate logger for health monitoring

Before this patch all logs from the health monitoring part used 'main'
logger. This patch creates a new logger ('health') and health monitoring
parts of code use this logger.

Change-Id: I7bfa1b2197a06d3c9edb29e7ec45ba77c54b11ad
diff --git a/src/health/manager/StateManager.cpp b/src/health/manager/StateManager.cpp
index b37630f..22b52b9 100644
--- a/src/health/manager/StateManager.cpp
+++ b/src/health/manager/StateManager.cpp
@@ -6,7 +6,7 @@
 namespace velia::health {
 
 StateManager::StateManager()
-    : m_log(spdlog::get("main"))
+    : m_log(spdlog::get("health"))
 {
 }