Added log categories for driver/plugin

This commit is contained in:
Klaus Basan
2016-11-16 02:57:58 +01:00
parent 3903a24696
commit 6a66ab84c2
4 changed files with 27 additions and 1 deletions

View File

@@ -124,6 +124,20 @@ namespace BlackMisc
return cat;
}
//! Driver
static const CLogCategory &driver()
{
static const CLogCategory cat { "swift.driver" };
return cat;
}
//! Plugin
static const CLogCategory &plugin()
{
static const CLogCategory cat { "swift.plugin" };
return cat;
}
//! Background task
static const CLogCategory &worker()
{
@@ -170,10 +184,12 @@ namespace BlackMisc
context(),
contextSlot(),
download(),
driver(),
guiComponent(),
mapping(),
matching(),
network(),
plugin(),
swiftDbWebservice(),
services(),
settings(),