loolwsd: Show only abbreviated message when reading from cache

Change-Id: I6d5c8984010e2917b9069df6ee3b0a28c678b297
This commit is contained in:
Pranav Kant 2016-07-09 23:59:25 +05:30
parent 62814d29cf
commit d18379adce

View file

@ -213,7 +213,7 @@ std::string TileCache::getTextFile(const std::string& fileName)
buffer.pop_back();
std::string result = std::string(buffer.data(), buffer.size());
Log::info("Read '" + result + "' from " + fullFileName);
Log::info("Read '" + LOOLProtocol::getAbbreviatedMessage(result.c_str(), result.size()) + "' from " + fullFileName);
return result;
}