From 08446976e3b6ce0e02f22b391b37aacaad181e1a Mon Sep 17 00:00:00 2001 From: Derek Lamberti Date: Tue, 26 Nov 2019 16:38:31 +0000 Subject: Replace boost logging with simple logger !referencetests:214319 * Reduces arm nn binary size ~15% * Also fixed test logging black hole issues Change-Id: Iba27db304d9a8088fa46aeb0b52225d93bb56bc8 Signed-off-by: Derek Lamberti --- tests/YoloDatabase.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/YoloDatabase.cpp') diff --git a/tests/YoloDatabase.cpp b/tests/YoloDatabase.cpp index 472fc8083d..98db8d4871 100644 --- a/tests/YoloDatabase.cpp +++ b/tests/YoloDatabase.cpp @@ -5,6 +5,7 @@ #include "YoloDatabase.hpp" #include +#include #include #include @@ -13,7 +14,6 @@ #include #include -#include #include #include "InferenceTestImage.hpp" @@ -91,7 +91,7 @@ std::unique_ptr YoloDatabase::GetTestCaseData(unsig } catch (const InferenceTestImageException& e) { - BOOST_LOG_TRIVIAL(fatal) << "Failed to load test case " << testCaseId << " with error: " << e.what(); + ARMNN_LOG(fatal) << "Failed to load test case " << testCaseId << " with error: " << e.what(); return nullptr; } -- cgit v1.2.1