From 3a4dad4fde59aa54986374e9a1372779e4ea35c1 Mon Sep 17 00:00:00 2001 From: Krisjanis Rijnieks Date: Thu, 14 Jan 2016 17:41:25 +0100 Subject: [PATCH] Fix `SettingsLoader` warnings --- src/Application/SettingsLoader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Application/SettingsLoader.cpp b/src/Application/SettingsLoader.cpp index 7599682..2f13300 100644 --- a/src/Application/SettingsLoader.cpp +++ b/src/Application/SettingsLoader.cpp @@ -17,12 +17,12 @@ bool SettingsLoader::load(SurfaceStack & surfaces, MediaServer & mediaServer, st ofxXmlSettings * xmlSettings = new ofxXmlSettings(); if(!xmlSettings->loadFile(fileName)){ - ofLogWarning("SurfaceManager") << "Could not load XML settings"; + ofLogWarning("SettingsLoader::load()") << "Could not load XML settings"; return false; } if(!xmlSettings->tagExists("surfaces")){ - ofLogWarning("SurfaceManager") << "XML settings is empty or has wrong markup"; + ofLogWarning("SettingsLoader::load()") << "XML settings is empty or has wrong markup"; return false; }