Skip to content
This repository has been archived by the owner on Nov 18, 2022. It is now read-only.

Commit

Permalink
#466: removed less useful debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
hugbug committed Nov 6, 2017
1 parent 0ee60ab commit 6f9fb29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions daemon/connect/Connection.cpp
Expand Up @@ -493,7 +493,7 @@ std::unique_ptr<Connection> Connection::Accept()

int Connection::TryRecv(char* buffer, int size)
{
debug("Receiving data");
//debug("Receiving data");

memset(buffer, 0, size);

Expand All @@ -513,7 +513,7 @@ int Connection::TryRecv(char* buffer, int size)

bool Connection::Recv(char * buffer, int size)
{
debug("Receiving data (full buffer)");
//debug("Receiving data (full buffer)");

memset(buffer, 0, size);

Expand Down
2 changes: 1 addition & 1 deletion daemon/feed/FeedCoordinator.cpp
Expand Up @@ -630,10 +630,10 @@ bool FeedCoordinator::HasActiveDownloads()

void FeedCoordinator::CheckSaveFeeds()
{
debug("CheckSaveFeeds");
Guard guard(m_downloadsMutex);
if (m_save)
{
debug("CheckSaveFeeds: save");
if (g_Options->GetServerMode())
{
g_DiskState->SaveFeeds(&m_feeds, &m_feedHistory);
Expand Down

0 comments on commit 6f9fb29

Please sign in to comment.