Remove some debugging

--HG--
branch : feature-streamed-package
hg/feature/streamed-package
kaetemi 10 years ago
parent 9a1510caf0
commit 8d93e9308f

@ -235,7 +235,7 @@ bool CIFile::open(const std::string &path, bool text)
else else
{ {
// TEMPORARY ERROR // TEMPORARY ERROR
nlerror("File '%s' not in streamed package", path.c_str()); // nlerror("File '%s' not in streamed package", path.c_str());
} }
} }
else else

@ -1443,7 +1443,7 @@ void CFileContainer::addSearchStreamedPackage (const string &filename, bool recu
{ {
// Add the file to the lookup // Add the file to the lookup
std::string filePackageName = packname + "@" + (*it); std::string filePackageName = packname + "@" + (*it);
nldebug("Insert '%s'", filePackageName.c_str()); // nldebug("Insert '%s'", filePackageName.c_str());
insertFileInMap((*it), filePackageName, false, CFile::getExtension(*it)); insertFileInMap((*it), filePackageName, false, CFile::getExtension(*it));
// Remapped extensions // Remapped extensions

@ -75,7 +75,7 @@ bool CStreamedPackageManager::loadPackage(const std::string &package)
void CStreamedPackageManager::list(std::vector<std::string> &fileNames, const std::string &package) void CStreamedPackageManager::list(std::vector<std::string> &fileNames, const std::string &package)
{ {
nldebug("List package '%s'", package.c_str()); // nldebug("List package '%s'", package.c_str());
std::map<std::string, CStreamedPackage>::iterator it = m_Packages.find(package); std::map<std::string, CStreamedPackage>::iterator it = m_Packages.find(package);
CStreamedPackage &p = it->second; CStreamedPackage &p = it->second;

Loading…
Cancel
Save