Skip to content

Commit da84e3f

Browse files
committed
ci: fix cpp
1 parent 7f372a0 commit da84e3f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

FileFilter/UnifiedDiffCoverageFilter.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ namespace FileFilter
3535
std::wifstream ifs(unifiedDiffPath.wstring());
3636

3737
if (!ifs)
38-
std::runtime_error("The file " + unifiedDiffPath.string() + " cannot be opened.");
38+
{
39+
std::runtime_error errorInfo = std::runtime_error("The file " + unifiedDiffPath.string() + " cannot be opened.");
40+
LOG_DEBUG << errorInfo.what();
41+
}
3942

4043
auto files = UnifiedDiffParser{}.Parse(ifs);
4144
LOG_DEBUG << L"Unified diff: " << unifiedDiffPath;

0 commit comments

Comments
 (0)