chore(logging): disable debug logs by default

This commit is contained in:
Lysec
2026-04-03 16:04:27 +02:00
parent 31a8ab9a53
commit 539b398944
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -5,8 +5,8 @@
namespace {
// Debug for now
LogLevel gMinLevel = LogLevel::Debug;
// Keep debug disabled by default; runtime debug service can enable it.
LogLevel gMinLevel = LogLevel::Info;
const char* levelTag(LogLevel level) {
switch (level) {
+1 -1
View File
@@ -23,5 +23,5 @@ private:
InternalNotificationService& m_internal_notifications;
std::unique_ptr<sdbus::IObject> m_object;
bool m_verbose_logs{true};
bool m_verbose_logs{false};
};