-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make logging module consistent and remove atomic. #75
Conversation
a830d2f
to
8b434ad
Compare
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #75 +/- ##
==========================================
+ Coverage 70.59% 70.68% +0.08%
==========================================
Files 28 28
Lines 687 689 +2
Branches 54 54
==========================================
+ Hits 485 487 +2
Misses 169 169
Partials 33 33
☔ View full report in Codecov by Sentry. |
@@ -22,7 +22,7 @@ void HeapChunkSelector::add_chunk(csharedChunk& chunk) { m_chunks.emplace(VChunk | |||
void HeapChunkSelector::add_chunk_internal(const chunk_num_t chunkID) { | |||
if (m_chunks.find(chunkID) == m_chunks.end()) { | |||
// sanity check | |||
LOGWARN("No chunk found for ChunkID {}", chunkID); | |||
LOGWARNMOD(homeobject, "No chunk found for ChunkID {}", chunkID); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HeapChunkSelector currently does not include homeobject headers...so this is left alone,
@@ -16,7 +16,6 @@ AlignConsecutiveDeclarations: false | |||
AlignEscapedNewlines: Right | |||
AlignOperands: false | |||
AlignTrailingComments: true | |||
AllowShortBlocksOnASingleLine: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a dupe; it's below as well.
d29f928
to
64965b5
Compare
No description provided.