Skip to content

Commit

Permalink
eliminate extra error message
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Sep 4, 2021
1 parent 6b1ef6e commit bce8469
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libi2pd_client/ClientContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -755,8 +755,10 @@ namespace client
LogPrint(eLogInfo, "Clients: I2P Server Forward created for UDP Endpoint ", host, ":", port, " bound on ", address, " for ",localDestination->GetIdentHash().ToBase32());
}
else
{
ins.first->second->isUpdated = true;
LogPrint(eLogError, "Clients: I2P Server Forward for destination/port ", m_AddressBook.ToAddress(localDestination->GetIdentHash()), "/", port, "already exists");
LogPrint(eLogError, "Clients: I2P Server Forward for destination/port ", m_AddressBook.ToAddress(localDestination->GetIdentHash()), "/", port, " already exists");
}

continue;
}
Expand Down

0 comments on commit bce8469

Please sign in to comment.