Log. category for wizard added

This commit is contained in:
Klaus Basan
2017-04-12 04:35:12 +02:00
committed by Mathew Sutcliffe
parent 7b6337e6ad
commit 88f9a4d04a
2 changed files with 9 additions and 0 deletions

View File

@@ -166,6 +166,13 @@ namespace BlackMisc
return cat;
}
//! Wizard
static const CLogCategory &wizard()
{
static const CLogCategory cat { "swift.wizard" };
return cat;
}
//! Background task
static const CLogCategory &worker()
{
@@ -254,6 +261,7 @@ namespace BlackMisc
vatsimSpecific(),
verification(),
webservice(),
wizard(),
worker()
};
return cats;

View File

@@ -32,6 +32,7 @@ namespace BlackMisc
{ "cache", exactMatch(CLogCategory::cache()) },
{ "driver", exactMatch(CLogCategory::driver()) },
{ "plugin", exactMatch(CLogCategory::plugin()) },
{ "wizard", exactMatch(CLogCategory::wizard()) },
{ "background task", exactMatch(CLogCategory::worker()) },
{ "model mapping", exactMatch(CLogCategory::mapping()) },
{ "model matching", exactMatch(CLogCategory::matching()) },