Skip to content

Commit

Permalink
Fixed log messages typos
Browse files Browse the repository at this point in the history
  • Loading branch information
barvic committed Jun 13, 2023
1 parent 01073ac commit 316383c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions EventFilter/CSCRawToDigi/src/CSCDDUEventData.cc
Original file line number Diff line number Diff line change
Expand Up @@ -196,16 +196,15 @@ void CSCDDUEventData::unpack_data(const uint16_t* buf, CSCDCCExaminer* examiner)
if (pos == nullptr) {
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi")
<< "skip unpacking of CSC " << cscid << " due format errors (NULL pointer to chamber data)"
<< std::dec;
<< "skip unpacking of CSC " << cscid << " due to format errors (NULL pointer to chamber data)";
continue;
}

ExaminerStatusType errors = examiner->errorsForChamber(cscid);
if ((errors & examiner->getMask()) > 0) {
if (debug)
LogTrace("CSCDDUEventData|CSCRawToDigi")
<< "skip unpacking of CSC " << cscid << " due format errors: 0x" << std::hex << errors << std::dec;
<< "skip unpacking of CSC " << cscid << " due to format errors: 0x" << std::hex << errors << std::dec;
continue;
}

Expand Down

0 comments on commit 316383c

Please sign in to comment.