From 2d50f8c9e9c29f3905d38985c3ac1f1f32c24663 Mon Sep 17 00:00:00 2001 From: Haseena Sainul Date: Mon, 26 Sep 2022 01:43:28 -0700 Subject: [PATCH] Use SYSLOG_GLOBAL instead SYSLOG --- Launcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Launcher.cpp b/Launcher.cpp index c726e90..f5cb263 100644 --- a/Launcher.cpp +++ b/Launcher.cpp @@ -107,7 +107,7 @@ void Launcher::Update(const ProcessObserver::Info& info) if (result != Core::ERROR_NONE) { if (_deactivationInProgress == false) { _deactivationInProgress = true; - SYSLOG(Trace::Fatal, (_T("FORCED Shutdown: %s by error: %d."), _service->Callsign().c_str(), result)); + SYSLOG_GLOBAL(Logging::Startup, (_T("FORCED Shutdown: %s by error: %d."), _service->Callsign().c_str(), result)); PluginHost::WorkerPool::Instance().Submit(PluginHost::IShell::Job::Create(_service, PluginHost::IShell::DEACTIVATED, PluginHost::IShell::FAILURE)); } }