mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 09:11:31 -04:00
Merge branch 'main' of https://github.com/geode-sdk/geode
This commit is contained in:
commit
7bc6a066cd
1 changed files with 9 additions and 3 deletions
|
@ -193,12 +193,17 @@ void Logger::setup() {
|
|||
m_logStream = std::ofstream(dirs::getGeodeLogDir() / log::generateLogName());
|
||||
}
|
||||
|
||||
std::mutex g_logMutex;
|
||||
void Logger::push(Severity sev, Mod* mod, std::string&& content) {
|
||||
if (mod->isLoggingEnabled()) {
|
||||
auto& log = m_logs.emplace_back(sev, mod, std::move(content));
|
||||
auto const logStr = log.toString(true, m_nestLevel);
|
||||
Log* log = nullptr;
|
||||
{
|
||||
std::lock_guard g(g_logMutex);
|
||||
log = &m_logs.emplace_back(sev, mod, std::move(content));
|
||||
}
|
||||
auto const logStr = log->toString(true, m_nestLevel);
|
||||
|
||||
console::log(logStr, log.getSeverity());
|
||||
console::log(logStr, log->getSeverity());
|
||||
m_logStream << logStr << std::endl;
|
||||
}
|
||||
}
|
||||
|
@ -218,6 +223,7 @@ std::vector<Log> const& Logger::list() {
|
|||
}
|
||||
|
||||
void Logger::clear() {
|
||||
std::lock_guard g(g_logMutex);
|
||||
m_logs.clear();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue