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:
Fischlurch 2019-12-12 23:17:43 +01:00
parent c86f914915
commit f6a4ee3f89

View file

@ -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.");
}