change debug output

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1905 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
joss17 2009-12-18 17:51:40 +00:00
parent 4f20a4d89c
commit 5f7bc6e69d
2 changed files with 5 additions and 7 deletions

View file

@ -521,7 +521,10 @@ void p3disc::sendPeerDetails(std::string to, std::string about)
}
// Send off message
sendItem(di);
#ifdef P3DISC_DEBUG
di->print(std::cerr, 5);
#endif
sendItem(di);
#ifdef P3DISC_DEBUG
std::cerr << "Sent DI Message" << std::endl;