From 62fd154629d123e5310fd98e3d9c918451db496e Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Thu, 17 Jun 2021 17:08:21 +0200 Subject: [PATCH] DocCache: Log the effective cache size --- frontend/document/doccache.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/document/doccache.lua b/frontend/document/doccache.lua index 893b38672..27d0f1064 100644 --- a/frontend/document/doccache.lua +++ b/frontend/document/doccache.lua @@ -5,12 +5,16 @@ local Cache = require("cache") local CanvasContext = require("document/canvascontext") local DataStorage = require("datastorage") +local logger = require("logger") local function calcCacheMemSize() local min = DGLOBAL_CACHE_SIZE_MINIMUM local max = DGLOBAL_CACHE_SIZE_MAXIMUM local calc = Cache:_calcFreeMem() * (DGLOBAL_CACHE_FREE_PROPORTION or 0) - return math.min(max, math.max(min, calc)) + local size = math.min(max, math.max(min, calc)) + + logger.dbg(string.format("Allocating a %dMB budget for the global document cache", size / 1024 / 1024)) + return size end local DocCache = Cache:new{