refs #489 Predefined log category changes.

This commit is contained in:
Mathew Sutcliffe
2015-10-29 21:48:33 +00:00
parent 0ca4797bcf
commit 72f295447b

View File

@@ -43,13 +43,6 @@ namespace BlackMisc
return cat; return cat;
} }
//! Settings updates
static const CLogCategory &settingsUpdate()
{
static const CLogCategory cat { "swift.settings.update" };
return cat;
}
//! Contexts //! Contexts
static const CLogCategory &context() static const CLogCategory &context()
{ {
@@ -71,6 +64,13 @@ namespace BlackMisc
return cat; return cat;
} }
//! Downloading
static const CLogCategory &download()
{
static const CLogCategory cat { "swift.download" };
return cat;
}
//! All predefined special categories //! All predefined special categories
static const QList<CLogCategory> &allSpecialCategories() static const QList<CLogCategory> &allSpecialCategories()
{ {
@@ -78,10 +78,10 @@ namespace BlackMisc
{ {
uncategorized(), uncategorized(),
validation(), validation(),
settingsUpdate(),
context(), context(),
contextSlot(), contextSlot(),
guiComponent() guiComponent(),
download()
}; };
return cats; return cats;
} }