diff --git a/Code/Mantid/Framework/Kernel/test/ConfigServiceTest.h b/Code/Mantid/Framework/Kernel/test/ConfigServiceTest.h index dcb567a693a11491410bf2413d08d3dfbf82df38..d18106515f0001e5587864039859edc4a1ffed23 100644 --- a/Code/Mantid/Framework/Kernel/test/ConfigServiceTest.h +++ b/Code/Mantid/Framework/Kernel/test/ConfigServiceTest.h @@ -28,6 +28,10 @@ public: void testLogging() { + + // Force the setting to "notice" in case the developer uses a different level. + Mantid::Kernel::Logger::setLevelForAll(Poco::Message::PRIO_NOTICE); + //attempt some logging Logger& log1 = Logger::get("logTest"); @@ -53,7 +57,7 @@ public: //therefore this should only return false for debug TS_ASSERT(log1.is(Poco::Message::PRIO_DEBUG) == false); //debug TS_ASSERT(log1.is(Poco::Message::PRIO_INFORMATION)==false); //information - TS_ASSERT(log1.is(Poco::Message::PRIO_NOTICE)); //information + TS_ASSERT(log1.is(Poco::Message::PRIO_NOTICE)); //notice TS_ASSERT(log1.is(Poco::Message::PRIO_WARNING)); //warning TS_ASSERT(log1.is(Poco::Message::PRIO_ERROR)); //error TS_ASSERT(log1.is(Poco::Message::PRIO_FATAL)); //fatal