Closed joka921 closed 17 hours ago
Attention: Patch coverage is 61.84211%
with 58 lines
in your changes missing coverage. Please review.
Project coverage is 89.23%. Comparing base (
d53d4f9
) to head (2b293d9
). Report is 1 commits behind head on master.
Files with missing lines | Patch % | Lines |
---|---|---|
src/index/IndexImpl.cpp | 58.99% | 57 Missing :warning: |
src/util/Log.h | 92.30% | 1 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
🚨 Try these New Features:
No test result changes.
Issues
1 New issue
0 Accepted issues
Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code
So far, QLever uses the macro
LOG(...)
for logging, where the argument is the log level. This is used by other libraries, too, in particular by Abseil. With an unfortunate include order, this leads to compilation errors that are hard to understand for new developers. We now use our usual prefix also for logging and call the macrosAD_LOG_INFO
,AD_LOG_DEBUG
, etc.