removed some debugging output

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5560 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
csoler 2012-09-17 20:09:38 +00:00
parent 8a41dd67ce
commit 41cb5b7d34
3 changed files with 13 additions and 2 deletions

View file

@ -957,12 +957,16 @@ RsStackFileLock::RsStackFileLock(const std::string& file_path)
sleep(1) ;
#endif
}
#ifdef RSDIR_DEBUG
std::cerr << "Acquired file handle " << _file_handle << ", lock file:" << file_path << std::endl;
#endif
}
RsStackFileLock::~RsStackFileLock()
{
RsDirUtil::releaseLockFile(_file_handle) ;
#ifdef RSDIR_DEBUG
std::cerr << "Released file lock with handle " << _file_handle << std::endl;
#endif
}
#if 0 // NOT ENABLED YET!