silence warning during shutdown, since it is confusing and missleading (the error is expected when shutting down)

This commit is contained in:
sehraf 2022-07-12 23:25:33 +02:00
parent 91a7043082
commit ddef65b0b0
No known key found for this signature in database
GPG Key ID: DF09F6EAE356B2C6

View File

@ -323,7 +323,8 @@ autoProxyService *rsAutoProxyMonitor::lookUpService(autoProxyType::autoProxyType
if ((itService = mProxies.find(t)) != mProxies.end()) {
return itService->second;
}
RS_DBG("no service for type ", t, " found!");
if (!mRSShutDown)
RS_DBG("no service for type ", t, " found!");
return NULL;
}