From 47b8ed2321c1a71743cb50fa555cbb3f6b2a3a62 Mon Sep 17 00:00:00 2001 From: "Robin.Mueller" Date: Wed, 1 Jul 2020 14:34:16 +0200 Subject: [PATCH] split up long debug message --- datapoollocal/LocalDataPoolManager.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/datapoollocal/LocalDataPoolManager.cpp b/datapoollocal/LocalDataPoolManager.cpp index 781161384..9c70c74fb 100644 --- a/datapoollocal/LocalDataPoolManager.cpp +++ b/datapoollocal/LocalDataPoolManager.cpp @@ -47,8 +47,9 @@ ReturnValue_t LocalDataPoolManager::initialize(MessageQueueIF* queueToUse, } else { sif::warning << "LocalDataPoolManager::initialize: Could not retrieve" - " queue ID from HK destination object ID. Make sure it exists" - " and the object impements AcceptsHkPacketsIF!" << std::endl; + " queue ID from HK destination object ID. " << std::flush; + sif::warning << "Make sure it exists and the object impements " + "AcceptsHkPacketsIF!" << std::endl; } return initializeHousekeepingPoolEntriesOnce(); }