diff options
author | Ashod Nakashian <ashod.nakashian@collabora.co.uk> | 2019-04-22 12:03:49 -0400 |
---|---|---|
committer | Ashod Nakashian <ashnakash@gmail.com> | 2019-04-23 03:02:36 +0200 |
commit | ca1a83f96b013e171130596dd1486b1416ddbea3 (patch) | |
tree | 1c3cf5214092908d2158e2ec715ba861d164690a | |
parent | 2ec5023dbf4e8fd8d59a82f9040ad88933a10aa2 (diff) |
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>
-rw-r--r-- | wsd/DocumentBroker.cpp | 4 | ||||
-rw-r--r-- | wsd/TileCache.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/wsd/DocumentBroker.cpp b/wsd/DocumentBroker.cpp index 53d3e2dbe..40465c0ce 100644 --- a/wsd/DocumentBroker.cpp +++ b/wsd/DocumentBroker.cpp @@ -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); } } diff --git a/wsd/TileCache.cpp b/wsd/TileCache.cpp index 287e0ba77..a4f16a5f0 100644 --- a/wsd/TileCache.cpp +++ b/wsd/TileCache.cpp @@ -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 |