Skip to content

Commit

Permalink
fixup: Classify a level-1 error as such
Browse files Browse the repository at this point in the history
Also added a trailing `<<` to ease source code
comprehension, search, and adaptation.
  • Loading branch information
rousskov committed Aug 12, 2024
1 parent 6a6f126 commit f2e131a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/acl/external/time_quota/ext_time_quota_acl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ static time_t readTime(const char *user_key, const char *sub_key)
if (data.dsize == sizeof(t)) {
memcpy(&t, data.dptr, sizeof(t));
} else {
debugs(MY_DEBUG_SECTION, DBG_IMPORTANT, "Incompatible or corrupted database. "
debugs(MY_DEBUG_SECTION, DBG_IMPORTANT, "ERROR: Incompatible or corrupted database. " <<
"key: '" << ks <<
"', expected time value size: " << sizeof(t) <<
", actual time value size: " << data.dsize);
Expand Down

0 comments on commit f2e131a

Please sign in to comment.