|
@@ -25,7 +25,7 @@ int Finder::GetPort(const std::string& ipAddress)
|
|
|
{
|
|
{
|
|
|
std::stringstream ss;
|
|
std::stringstream ss;
|
|
|
ss << "Retrieving port for " << ipAddress << std::endl;
|
|
ss << "Retrieving port for " << ipAddress << std::endl;
|
|
|
- Logging::Log(Logging::Severity::Info, ss.str());
|
|
|
|
|
|
|
+ Logging::Log(Logging::Severity::Debug, ss.str());
|
|
|
|
|
|
|
|
{
|
|
{
|
|
|
std::unique_lock<std::mutex> lock(m_mutex);
|
|
std::unique_lock<std::mutex> lock(m_mutex);
|
|
@@ -49,7 +49,7 @@ int Finder::GetPort(const std::string& ipAddress)
|
|
|
|
|
|
|
|
ss.str("");
|
|
ss.str("");
|
|
|
ss << "New port for " << ipAddress << ": " << port << std::endl;
|
|
ss << "New port for " << ipAddress << ": " << port << std::endl;
|
|
|
- Logging::Log(Logging::Severity::Info, ss.str());
|
|
|
|
|
|
|
+ Logging::Log(Logging::Severity::Debug, ss.str());
|
|
|
|
|
|
|
|
return port;
|
|
return port;
|
|
|
}
|
|
}
|