Removed some overly verbose debug output
authorIngo Ruhnke <grumbel@gmail.com>
Sun, 24 Aug 2014 01:54:42 +0000 (03:54 +0200)
committerIngo Ruhnke <grumbel@gmail.com>
Mon, 25 Aug 2014 07:52:11 +0000 (09:52 +0200)
src/addon/addon_manager.cpp

index 50e0032..3c358d7 100644 (file)
@@ -340,7 +340,6 @@ AddonManager::scan_for_info(const std::string& archive_os_path) const
         PHYSFS_freeList);
   for(char** j = rc2.get(); *j != 0; ++j)
   {
-    log_debug << "enumerating: " << std::string(*j) << std::endl;
     if (has_suffix(*j, ".nfo"))
     {
       std::string nfo_filename = FileSystem::join("/", *j);
@@ -353,7 +352,6 @@ AddonManager::scan_for_info(const std::string& archive_os_path) const
       }
       else
       {
-        log_debug << "compare: " << realdir << " " << archive_os_path << std::endl;
         if (realdir == archive_os_path)
         {
           return nfo_filename;