Skip to content
Snippets Groups Projects
Commit 4edc0d9e authored by Beat Küng's avatar Beat Küng Committed by Lorenz Meier
Browse files

fix logger: add forgotten unlock in Logger::write_info

parent 63bd2ceb
No related branches found
No related tags found
No related merge requests found
......@@ -692,6 +692,7 @@ void Logger::start_log()
write_version();
write_formats();
write_parameters();
_writer.notify();
_enabled = true;
}
......@@ -732,7 +733,6 @@ void Logger::write_formats()
}
_writer.unlock();
_writer.notify();
}
/* write info message */
......@@ -757,6 +757,7 @@ void Logger::write_info(const char *name, const char *value)
write_wait(buffer, msg_size);
}
_writer.unlock();
}
/* write version info messages */
......
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