Skip to content

Commit

Permalink
Fix #331: Missing return true in cLog::begin()
Browse files Browse the repository at this point in the history
  • Loading branch information
terrillmoore committed Jun 12, 2022
1 parent 2e0353c commit d8cebf4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Catena_Log.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ class cLog
bool begin(DebugFlags uDebugFlags = DebugFlags(kInfo | kWarning | kError | kBug))
{
this->m_uDebugFlags = uDebugFlags;
return true;
}

// old, incorrect polarity: return false if isEnabled() is true..
Expand Down

0 comments on commit d8cebf4

Please sign in to comment.