You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(mAccCTFSize && mMaxSize > mMinSize && ((mAccCTFSize + mCurrCTFSize) > mMaxSize))) { // this is not the 1st CTF in the file and the new size will exceed allowed max
483
483
needToOpen = true;
484
484
} else {
485
-
LOGP(INFO, "Will add new CTF of estimated size {} to existing file of size {}", mCurrCTFSize, mAccCTFSize);
485
+
LOGP(info, "Will add new CTF of estimated size {} to existing file of size {}", mCurrCTFSize, mAccCTFSize);
486
486
}
487
487
}
488
488
if (needToOpen) {
@@ -715,7 +715,7 @@ size_t CTFWriterSpec::getAvailableDiskSpace(const std::string& path, int level)
715
715
}
716
716
constauto si = std::filesystem::space(path, ec);
717
717
int64_t avail = int64_t(si.available) - nLocked * mChkSize + written; // account already written part of unfinished files
718
-
LOGP(DEBUG, "{} CTF files open (curr.size: {}) -> can use {} of {} bytes", nLocked, written, avail, si.available);
718
+
LOGP(debug, "{} CTF files open (curr.size: {}) -> can use {} of {} bytes", nLocked, written, avail, si.available);
0 commit comments