We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 175b529 commit da3e275Copy full SHA for da3e275
src/scriptable/scriptable.cpp
@@ -861,7 +861,7 @@ void Scriptable::exit()
861
{
862
m_skipArguments = 0;
863
QByteArray message = fromString( tr("Terminating server.\n") );
864
- print(message);
+ printError(message);
865
m_proxy->exit();
866
}
867
src/tests/tests_scripts.cpp
@@ -12,7 +12,7 @@
12
13
void Tests::commandExit()
14
15
- RUN("exit", "Terminating server.\n");
+ RUN("exit", "");
16
17
TEST( m_test->waitForServerToStop() );
18
0 commit comments