mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-26 02:35:38 +08:00
Ref T180, minor message change
This commit is contained in:
@@ -427,13 +427,14 @@ namespace BlackCore
|
|||||||
}
|
}
|
||||||
|
|
||||||
// send as message
|
// send as message
|
||||||
|
static const QString chgMsg("Connection status changed from '%1' to '%2'");
|
||||||
if (to == INetwork::DisconnectedError)
|
if (to == INetwork::DisconnectedError)
|
||||||
{
|
{
|
||||||
CLogMessage(this).error("Connection status changed from %1 to %2") << INetwork::connectionStatusToString(from) << INetwork::connectionStatusToString(to);
|
CLogMessage(this).error(chgMsg) << INetwork::connectionStatusToString(from) << INetwork::connectionStatusToString(to);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
CLogMessage(this).info("Connection status changed from %1 to %2") << INetwork::connectionStatusToString(from) << INetwork::connectionStatusToString(to);
|
CLogMessage(this).info(chgMsg) << INetwork::connectionStatusToString(from) << INetwork::connectionStatusToString(to);
|
||||||
}
|
}
|
||||||
|
|
||||||
// send as own signal
|
// send as own signal
|
||||||
|
|||||||
Reference in New Issue
Block a user