reduce the log messages with INFO level

This commit is contained in:
Luis Ángel San Martín
2016-03-15 20:55:00 +01:00
parent 5f24e4cec9
commit fafd573b6a
13 changed files with 22 additions and 25 deletions

View File

@ -15,7 +15,7 @@ void SyncController::service(HttpRequest &request, HttpResponse &response)
{
QString postData = QString::fromUtf8(request.getBody());
QLOG_INFO() << "POST DATA: " << postData;
QLOG_TRACE() << "POST DATA: " << postData;
if(postData.length()>0) {
QList<QString> data = postData.split("\n");