[PATCH] D117792: [clangd][Background] Make index validation logs verbose
Kadir Cetinkaya via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Jan 21 03:37:49 PST 2022
This revision was automatically updated to reflect the committed changes.
Closed by commit rG597eae998a87: [clangd][Background] Make index validation logs verbose (authored by kadircet).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D117792/new/
https://reviews.llvm.org/D117792
Files:
clang-tools-extra/clangd/index/Background.cpp
Index: clang-tools-extra/clangd/index/Background.cpp
===================================================================
--- clang-tools-extra/clangd/index/Background.cpp
+++ clang-tools-extra/clangd/index/Background.cpp
@@ -82,7 +82,7 @@
bool shardIsStale(const LoadedShard &LS, llvm::vfs::FileSystem *FS) {
auto Buf = FS->getBufferForFile(LS.AbsolutePath);
if (!Buf) {
- elog("Background-index: Couldn't read {0} to validate stored index: {1}",
+ vlog("Background-index: Couldn't read {0} to validate stored index: {1}",
LS.AbsolutePath, Buf.getError().message());
// There is no point in indexing an unreadable file.
return false;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D117792.401924.patch
Type: text/x-patch
Size: 667 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220121/959d44ab/attachment.bin>
More information about the cfe-commits
mailing list