From efe651ea4e51eae7a4fa9256e632eea1791f58e0 Mon Sep 17 00:00:00 2001 From: emb <> Date: Sat, 17 Jan 2015 21:50:28 -0600 Subject: [PATCH] Removed debug code. --- RetroFE/Source/Database/Configuration.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/RetroFE/Source/Database/Configuration.cpp b/RetroFE/Source/Database/Configuration.cpp index fb973b7..dce3acf 100644 --- a/RetroFE/Source/Database/Configuration.cpp +++ b/RetroFE/Source/Database/Configuration.cpp @@ -206,15 +206,9 @@ bool Configuration::GetProperty(std::string key, std::string &value) GetRawProperty("baseItemPath", baseItemPath); collectionName = GetCurrentCollection(); - Logger::Write(Logger::ZONE_INFO, "Configuration", "PROPERTY " + key + " BEFORE " + value); - value = Utils::Replace(value, "%BASE_MEDIA_PATH%", baseMediaPath); value = Utils::Replace(value, "%BASE_ITEM_PATH%", baseItemPath); value = Utils::Replace(value, "%ITEM_COLLECTION_NAME%", collectionName); - - Logger::Write(Logger::ZONE_INFO, "Configuration", "PROPERTY "+ key + " AFTER " + value); - - return retVal; }