Skip to content
Snippets Groups Projects
Commit b6179ea6 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

[PrivateSemaphore] Avoid duplicate "fiber Fiber" in log message

parent 30a14fb2
No related branches found
No related tags found
1 merge request!311Improve log messages
...@@ -17,7 +17,7 @@ class PrivateSemaphore : protected Blockable<LogSubsystem::PS> { ...@@ -17,7 +17,7 @@ class PrivateSemaphore : protected Blockable<LogSubsystem::PS> {
// cppcheck-suppress uninitMemberVar // cppcheck-suppress uninitMemberVar
PrivateSemaphore(emper::BlockablePurpose blockablePurpose = emper::BlockablePurpose::GENERIC) PrivateSemaphore(emper::BlockablePurpose blockablePurpose = emper::BlockablePurpose::GENERIC)
: Blockable(*Runtime::getRuntime(), blockablePurpose) { : Blockable(*Runtime::getRuntime(), blockablePurpose) {
LOGD("constructed by fiber " << Dispatcher::getCurrentFiber()); LOGD("constructed by " << Dispatcher::getCurrentFiber());
} }
virtual ~PrivateSemaphore() = default; virtual ~PrivateSemaphore() = default;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment