mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-15 01:05:35 +08:00
refs #889, log categories
This commit is contained in:
committed by
Mathew Sutcliffe
parent
2c2a043e40
commit
ff0c37ff58
@@ -131,6 +131,34 @@ namespace BlackMisc
|
||||
return cat;
|
||||
}
|
||||
|
||||
//! Model loader
|
||||
static const CLogCategory &modelLoader()
|
||||
{
|
||||
static const CLogCategory cat { "swift.modelloader" };
|
||||
return cat;
|
||||
}
|
||||
|
||||
//! Model cache
|
||||
static const CLogCategory &modelCache()
|
||||
{
|
||||
static const CLogCategory cat { "swift.modelcache" };
|
||||
return cat;
|
||||
}
|
||||
|
||||
//! Model set cache
|
||||
static const CLogCategory &modelSetCache()
|
||||
{
|
||||
static const CLogCategory cat { "swift.modelsetcache" };
|
||||
return cat;
|
||||
}
|
||||
|
||||
//! Model UI
|
||||
static const CLogCategory &modelGui()
|
||||
{
|
||||
static const CLogCategory cat { "swift.modelui" };
|
||||
return cat;
|
||||
}
|
||||
|
||||
//! Plugin
|
||||
static const CLogCategory &plugin()
|
||||
{
|
||||
@@ -209,6 +237,10 @@ namespace BlackMisc
|
||||
guiComponent(),
|
||||
mapping(),
|
||||
matching(),
|
||||
modelLoader(),
|
||||
modelCache(),
|
||||
modelSetCache(),
|
||||
modelGui(),
|
||||
network(),
|
||||
plugin(),
|
||||
swiftDbWebservice(),
|
||||
|
||||
Reference in New Issue
Block a user