Skip to content

Commit 530375a

Browse files
authored
Merge pull request #1 from alekseyt/sink-fix
Fixed compilation error in UISink.h
2 parents 3259d29 + a8390f3 commit 530375a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Log/UISink.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class clusterui_sink : public sinks::base_sink<Mutex>
2121
{
2222
// msg.payload is the raw string without any formatting
2323
memory_buf_t formatted;
24-
base_sink::formatter_->format(msg, formatted);
24+
this->formatter_->format(msg, formatted);
2525
func(fmt::to_string(formatted).c_str(), msg.level);
2626
}
2727

0 commit comments

Comments
 (0)