Revert "temporarily add some noisy debug messages"
This reverts commit f538a6e1a1
.
This commit is contained in:
parent
f538a6e1a1
commit
c4ea89dc97
1 changed files with 0 additions and 6 deletions
|
@ -41,7 +41,6 @@ FGDNSClient::~FGDNSClient()
|
||||||
|
|
||||||
void FGDNSClient::init()
|
void FGDNSClient::init()
|
||||||
{
|
{
|
||||||
SG_LOG(SG_NETWORK,SG_DEBUG,"FGDNSClient::init()");
|
|
||||||
if (_inited) {
|
if (_inited) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -49,7 +48,6 @@ void FGDNSClient::init()
|
||||||
_dns.reset( new simgear::DNS::Client() );
|
_dns.reset( new simgear::DNS::Client() );
|
||||||
|
|
||||||
_inited = true;
|
_inited = true;
|
||||||
SG_LOG(SG_NETWORK,SG_DEBUG,"FGDNSClient::init() finished");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void FGDNSClient::postinit()
|
void FGDNSClient::postinit()
|
||||||
|
@ -64,14 +62,10 @@ void FGDNSClient::shutdown()
|
||||||
|
|
||||||
void FGDNSClient::update(double)
|
void FGDNSClient::update(double)
|
||||||
{
|
{
|
||||||
SG_LOG(SG_NETWORK,SG_DEBUG,"FGDNSClient::update()");
|
|
||||||
_dns->update();
|
_dns->update();
|
||||||
SG_LOG(SG_NETWORK,SG_DEBUG,"FGDNSClient::update() finished");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void FGDNSClient::makeRequest(const simgear::DNS::Request_ptr& req)
|
void FGDNSClient::makeRequest(const simgear::DNS::Request_ptr& req)
|
||||||
{
|
{
|
||||||
SG_LOG(SG_NETWORK,SG_DEBUG,"FGDNSClient::makeRequest()");
|
|
||||||
_dns->makeRequest(req);
|
_dns->makeRequest(req);
|
||||||
SG_LOG(SG_NETWORK,SG_DEBUG,"FGDNSClient::makeRequest() finished");
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue