(→Debugging Attica) |
(use other template) |
||
| Line 1: | Line 1: | ||
= Debugging Attica = | = Debugging Attica = | ||
| − | In | + | In {{path|attica/lib/atticabasejob.cpp}} |
| − | + | ||
you can enable the debug output of all XML the server sends. | you can enable the debug output of all XML the server sends. | ||
Simply add the qDebug() to the dataFinished function: | Simply add the qDebug() to the dataFinished function: | ||
In attica/lib/atticabasejob.cpp you can enable the debug output of all XML the server sends. Simply add the qDebug() to the dataFinished function:
void BaseJob::dataFinished()
{
if (d->m_reply->error() == QNetworkReply::NoError) {
QByteArray data = d->m_reply->readAll();
qDebug() << data;
...
and you will see lots of XML in your debug shell.