fix: Build issue on Ubuntu: qInfo() undefined in serverList.cpp #112
This commit is contained in:
parent
ad6bcc2317
commit
116f156022
1 changed files with 2 additions and 1 deletions
|
@ -587,7 +587,8 @@ void CServerListManager::SlaveServerRegisterServer ( const bool bIsRegister )
|
||||||
void CServerListManager::SetSvrRegStatus ( ESvrRegStatus eNSvrRegStatus )
|
void CServerListManager::SetSvrRegStatus ( ESvrRegStatus eNSvrRegStatus )
|
||||||
{
|
{
|
||||||
// output regirstation result/update on the console
|
// output regirstation result/update on the console
|
||||||
qInfo() << "Server Registration Status update:" << svrRegStatusToString ( eNSvrRegStatus );
|
QTextStream& tsConsoleStream = *( ( new ConsoleWriterFactory() )->get() );
|
||||||
|
tsConsoleStream << "Server Registration Status update:" << svrRegStatusToString ( eNSvrRegStatus ) << endl;
|
||||||
|
|
||||||
// store the state and inform the GUI about the new status
|
// store the state and inform the GUI about the new status
|
||||||
eSvrRegStatus = eNSvrRegStatus;
|
eSvrRegStatus = eNSvrRegStatus;
|
||||||
|
|
Loading…
Reference in a new issue