diff --git a/src/services/autoproxy/rsautoproxymonitor.cc b/src/services/autoproxy/rsautoproxymonitor.cc index b2d71571e..bf7a4d408 100644 --- a/src/services/autoproxy/rsautoproxymonitor.cc +++ b/src/services/autoproxy/rsautoproxymonitor.cc @@ -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; }