mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 09:31:45 +00:00
convert log severities use to lowercase and remove use of MQLOG
This commit is contained in:
committed by
Mohammad Al-Turany
parent
4e942e489b
commit
a3393e600e
@@ -83,7 +83,7 @@ inline std::string getInterfaceIP(std::string interface)
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG(ERROR) << "Could not find provided network interface: \"" << interface << "\"!, exiting.";
|
||||
LOG(error) << "Could not find provided network interface: \"" << interface << "\"!, exiting.";
|
||||
return "";
|
||||
}
|
||||
}
|
||||
@@ -102,7 +102,7 @@ inline std::string getDefaultRouteNetworkInterface()
|
||||
|
||||
if (!file)
|
||||
{
|
||||
LOG(ERROR) << "Could not detect default route network interface name - popen() failed!";
|
||||
LOG(error) << "Could not detect default route network interface name - popen() failed!";
|
||||
return "";
|
||||
}
|
||||
|
||||
@@ -118,11 +118,11 @@ inline std::string getDefaultRouteNetworkInterface()
|
||||
|
||||
if (interfaceName == "")
|
||||
{
|
||||
LOG(ERROR) << "Could not detect default route network interface name";
|
||||
LOG(error) << "Could not detect default route network interface name";
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG(DEBUG) << "Detected network interface name for the default route: " << interfaceName;
|
||||
LOG(debug) << "Detected network interface name for the default route: " << interfaceName;
|
||||
}
|
||||
|
||||
return interfaceName;
|
||||
|
Reference in New Issue
Block a user