diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-08-08 13:06:42 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-08-08 13:06:42 +1000 |
commit | 4e236740f6c0417398f897001cd36351b35475df (patch) | |
tree | 03f1c5da74d0499463896828fb4614690fcf6068 /source/core/StarLogging.cpp | |
parent | ffc1f95789a72a556dfba143b6d2169930771f7a (diff) |
Update StarLogging.cpp
Diffstat (limited to 'source/core/StarLogging.cpp')
-rw-r--r-- | source/core/StarLogging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/StarLogging.cpp b/source/core/StarLogging.cpp index 062facf..9393bb1 100644 --- a/source/core/StarLogging.cpp +++ b/source/core/StarLogging.cpp @@ -89,7 +89,7 @@ void Logger::refreshLoggable() { shared_ptr<StdoutLogSink> Logger::s_stdoutSink = make_shared<StdoutLogSink>(); HashSet<LogSinkPtr> Logger::s_sinks{s_stdoutSink}; -Array<bool, 4> Logger::s_loggable = Array<bool, 4>::filled(false); +Array<bool, 4> Logger::s_loggable = Array<bool, 4>{false, true, true, true}; Mutex Logger::s_mutex; String LogMap::getValue(String const& key) { |