From 156cc9558ea327c825ab0412e74b40ecedfd399f Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Tue, 13 Aug 2024 22:32:29 +0200 Subject: [PATCH] Enabled logs for free disk space checks when downloading/updating countries There are several bug reports that iOS wrongly says that there is no free space available. As we can get iOS logs now, we can try to debug such cases. Signed-off-by: Alexander Borsuk --- platform/platform_unix_impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/platform_unix_impl.cpp b/platform/platform_unix_impl.cpp index 231381e9be..c5ac6b5843 100644 --- a/platform/platform_unix_impl.cpp +++ b/platform/platform_unix_impl.cpp @@ -114,7 +114,7 @@ Platform::TStorageStatus Platform::GetWritableStorageStatus(uint64_t neededSize) struct statfs st; int const ret = statfs(m_writableDir.c_str(), &st); - LOG(LDEBUG, ("statfs return =", ret, + LOG(LINFO, ("statfs return =", ret, "; block size =", st.f_bsize, "; blocks available =", st.f_bavail)); @@ -125,7 +125,7 @@ Platform::TStorageStatus Platform::GetWritableStorageStatus(uint64_t neededSize) } auto const availableBytes = st.f_bsize * st.f_bavail; - LOG(LDEBUG, ("Free space check: requested =", neededSize, "; available =", availableBytes)); + LOG(LINFO, ("Free space check: requested =", neededSize, "; available =", availableBytes)); if (availableBytes < neededSize) return NOT_ENOUGH_SPACE;