Library: no need to log lifecycle of the advice system on each invocation
Basically the advice system is just some further helper component with a lookup table, which "just works" transparently most of the time. We'd need those diagnostic messages only when explicitly debugging for some kind of access-after death, which should not happen as long as we stick to the general policy not to allow any significant functionality to be hooked up from dtors
This commit is contained in:
parent
c86f914915
commit
f6a4ee3f89
1 changed files with 2 additions and 2 deletions
|
|
@ -131,12 +131,12 @@ namespace advice {
|
|||
AdviceSystem()
|
||||
: index_()
|
||||
{
|
||||
INFO (library, "Initialising Advice Index tables.");
|
||||
TRACE (library, "Initialising Advice Index tables.");
|
||||
}
|
||||
|
||||
~AdviceSystem()
|
||||
{
|
||||
INFO (library, "Shutting down Advice system.");
|
||||
TRACE (library, "Shutting down Advice system.");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue