Skip to content

Commit

Permalink
[TODO: REVERT] Repair GHA for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Al2Klimov committed Aug 11, 2023
1 parent 841b369 commit 226ea32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions lib/base/logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,8 @@ void Logger::UpdateMinLogSeverity()
m_MinLogSeverity.store(result);
}

Log::Log(LogSeverity severity, String facility, const Object::Ptr& involved, const String& message)
: m_Severity(severity), m_Facility(std::move(facility)),
m_Involved(involved), m_IsNoOp(severity < Logger::GetMinLogSeverity())
Log::Log(LogSeverity severity, String facility, const String& message)
: m_Severity(severity), m_Facility(std::move(facility)), m_IsNoOp(severity < Logger::GetMinLogSeverity())
{
if (!m_IsNoOp && !message.IsEmpty()) {
m_Buffer << message;
Expand Down
2 changes: 1 addition & 1 deletion lib/base/logger.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class Log
Log(const Log& other) = delete;
Log& operator=(const Log& rhs) = delete;

Log(LogSeverity severity, String facility, const Object::Ptr& involved, const String& message = String());
Log(LogSeverity severity, String facility, const String& message = String());
~Log();

template<typename T>
Expand Down

0 comments on commit 226ea32

Please sign in to comment.