We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f372a0 commit da84e3fCopy full SHA for da84e3f
FileFilter/UnifiedDiffCoverageFilter.cpp
@@ -35,7 +35,10 @@ namespace FileFilter
35
std::wifstream ifs(unifiedDiffPath.wstring());
36
37
if (!ifs)
38
- std::runtime_error("The file " + unifiedDiffPath.string() + " cannot be opened.");
+ {
39
+ std::runtime_error errorInfo = std::runtime_error("The file " + unifiedDiffPath.string() + " cannot be opened.");
40
+ LOG_DEBUG << errorInfo.what();
41
+ }
42
43
auto files = UnifiedDiffParser{}.Parse(ifs);
44
LOG_DEBUG << L"Unified diff: " << unifiedDiffPath;
0 commit comments