summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/globals.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/installer/globals.cpp')
-rw-r--r--src/libs/installer/globals.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libs/installer/globals.cpp b/src/libs/installer/globals.cpp
index df97c11b0..5f3009905 100644
--- a/src/libs/installer/globals.cpp
+++ b/src/libs/installer/globals.cpp
@@ -30,6 +30,7 @@
const char IFW_COMPONENT_CHECKER[] = "ifw.componentChecker";
const char IFW_RESOURCES[] = "ifw.resources";
const char IFW_TRANSLATIONS[] = "ifw.translations";
+const char IFW_NETWORK[] = "ifw.network";
namespace QInstaller
{
@@ -37,13 +38,15 @@ namespace QInstaller
Q_LOGGING_CATEGORY(lcComponentChecker, IFW_COMPONENT_CHECKER)
Q_LOGGING_CATEGORY(lcResources, IFW_RESOURCES)
Q_LOGGING_CATEGORY(lcTranslations, IFW_TRANSLATIONS)
+Q_LOGGING_CATEGORY(lcNetwork, IFW_NETWORK)
QStringList loggingCategories()
{
static QStringList categories = QStringList()
<< QLatin1String(IFW_COMPONENT_CHECKER)
<< QLatin1String(IFW_RESOURCES)
- << QLatin1String(IFW_TRANSLATIONS);
+ << QLatin1String(IFW_TRANSLATIONS)
+ << QLatin1String(IFW_NETWORK);
return categories;
}