linux: fix app name

This commit is contained in:
Kavish Devar
2025-09-03 13:48:57 +05:30
parent f547cc13c0
commit 802c2e0220
3 changed files with 9 additions and 9 deletions

View File

@@ -3,9 +3,9 @@
#include <QDebug>
#include <QLoggingCategory>
Q_DECLARE_LOGGING_CATEGORY(Librepods)
Q_DECLARE_LOGGING_CATEGORY(librepods)
#define LOG_INFO(msg) qCInfo(Librepods) << "\033[32m" << msg << "\033[0m"
#define LOG_WARN(msg) qCWarning(Librepods) << "\033[33m" << msg << "\033[0m"
#define LOG_ERROR(msg) qCCritical(Librepods) << "\033[31m" << msg << "\033[0m"
#define LOG_DEBUG(msg) qCDebug(Librepods) << "\033[34m" << msg << "\033[0m"
#define LOG_INFO(msg) qCInfo(librepods) << "\033[32m" << msg << "\033[0m"
#define LOG_WARN(msg) qCWarning(librepods) << "\033[33m" << msg << "\033[0m"
#define LOG_ERROR(msg) qCCritical(librepods) << "\033[31m" << msg << "\033[0m"
#define LOG_DEBUG(msg) qCDebug(librepods) << "\033[34m" << msg << "\033[0m"