wsd: reduce tile logging from debug to trace level

These are very frequent and not very useful without
the ability to trace them across the system, which
are all done at trace level. So it's highly unlikely
that these would be used at debug.

Change-Id: I479f2ead1bbd2996b9972082e00ebf984072f785
Reviewed-on: https://gerrit.libreoffice.org/71073
Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
Tested-by: Ashod Nakashian <ashnakash@gmail.com>
This commit is contained in:
Ashod Nakashian
2019-04-22 12:03:49 -04:00
committed by Ashod Nakashian
parent 2ec5023dbf
commit ca1a83f96b
2 changed files with 3 additions and 3 deletions

View File

@ -1395,7 +1395,7 @@ void DocumentBroker::handleTileCombinedRequest(TileCombined& tileCombined,
// Forward to child to render.
const std::string req = newTileCombined.serialize("tilecombine");
LOG_DBG("Sending residual tilecombine: " << req);
LOG_TRC("Sending uncached residual tilecombine request to Kit: " << req);
_childProcess->sendTextFrame(req);
}
@ -1527,7 +1527,7 @@ void DocumentBroker::sendRequestedTiles(const std::shared_ptr<ClientSession>& se
// Forward to child to render.
const std::string req = newTileCombined.serialize("tilecombine");
LOG_DBG("Some of the tiles were not prerendered. Sending residual tilecombine: " << req);
LOG_TRC("Some of the tiles were not prerendered. Sending residual tilecombine: " << req);
_childProcess->sendTextFrame(req);
}
}

View File

@ -311,7 +311,7 @@ void TileCache::invalidateTiles(int part, int x, int y, int width, int height)
{
if (intersectsTile(it->first, part, x, y, width, height))
{
LOG_DBG("Removing tile: " << it->first.serialize());
LOG_TRC("Removing tile: " << it->first.serialize());
it = _cache.erase(it);
}
else