Change unregistered options warning to debug

This commit is contained in:
Alexey Rybalchenko
2018-06-14 13:41:42 +02:00
committed by Dennis Klein
parent 1554c1c273
commit 21419adb40
4 changed files with 13 additions and 13 deletions

View File

@@ -280,7 +280,7 @@ bool FairMQDevice::AttachChannel(FairMQChannel& ch)
}
catch (fair::mq::SocketError& se)
{
LOG(ERROR) << se.what();
LOG(error) << se.what();
return false;
}
}
@@ -823,7 +823,7 @@ void FairMQDevice::CreateOwnConfig()
try {
fDefaultTransportType = fair::mq::TransportTypes.at(fConfig->GetValue<string>("transport"));
} catch(const exception& e) {
LOG(ERROR) << "invalid transport type provided: " << fConfig->GetValue<string>("transport");
LOG(error) << "invalid transport type provided: " << fConfig->GetValue<string>("transport");
}
}
@@ -867,7 +867,7 @@ void FairMQDevice::SetConfig(FairMQProgOptions& config)
try {
fDefaultTransportType = fair::mq::TransportTypes.at(fConfig->GetValue<string>("transport"));
} catch(const exception& e) {
LOG(ERROR) << "invalid transport type provided: " << fConfig->GetValue<string>("transport");
LOG(error) << "invalid transport type provided: " << fConfig->GetValue<string>("transport");
}
SetTransport(fConfig->GetValue<string>("transport"));
}