We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d775887 commit b636836Copy full SHA for b636836
src/simplnx/Utilities/MessageHelper.cpp
@@ -113,20 +113,20 @@ class ThrottleSink : public spdlog::sinks::base_sink<Mutex>
113
return;
114
}
115
116
- for(auto& sink : m_Sinks)
+ for(auto& childSink : m_Sinks)
117
{
118
- if(sink->should_log(msg.level))
+ if(childSink->should_log(msg.level))
119
120
- sink->log(msg);
+ childSink->log(msg);
121
122
123
124
125
void flush_() override
126
127
128
129
- sink->flush();
+ childSink->flush();
130
131
132
0 commit comments