@@ -139,21 +139,21 @@ bool FileMetadataMap::insert(clang::FileID fileId, AbsolutePathRef absPathRef) {
139
139
/* isInProject*/ true );
140
140
} else {
141
141
checkInProjectPath = false ;
142
- spdlog::warn (" projectRoot.join(relativePath (= '{}'/'{}')) exists but "
143
- " the real path is '{}" ,
144
- this ->projectRootPath .asRef ().asStringView (),
145
- buildRootRelPath->asStringView (),
146
- llvm_ext::toStringView (realPath.str ()));
142
+ spdlog::trace (" projectRoot.join(relativePath (= '{}'/'{}')) exists but "
143
+ " the real path is '{}" ,
144
+ this ->projectRootPath .asRef ().asStringView (),
145
+ buildRootRelPath->asStringView (),
146
+ llvm_ext::toStringView (realPath.str ()));
147
147
}
148
148
} else if (error == std::errc::no_such_file_or_directory) {
149
- spdlog::warn (
149
+ spdlog::trace (
150
150
" failed to find file in project at '{}' (root: '{}', rel: '{}')" ,
151
151
originalFileSourcePath.asStringRef (),
152
152
this ->projectRootPath .asRef ().asStringView (),
153
153
buildRootRelPath->asStringView ());
154
154
} else {
155
- spdlog::warn (" hit error: {} when getting real path for {}" ,
156
- error.message (), originalFileSourcePath.asStringRef ());
155
+ spdlog::trace (" hit error: {} when getting real path for {}" ,
156
+ error.message (), originalFileSourcePath.asStringRef ());
157
157
}
158
158
}
159
159
0 commit comments