Simplify verbose handler log names
Table of Contents
This page is a capture in the deferred bucket of the product backlog — a pre-sprint idea, not yet pulled into a sprint as a story.
What
(One paragraph: the idea.)
Why
(Motivation, problem being solved, related context.)
References
See also
Generated handlers name their Boost.Log logger with the full entity name:
BOOST_LOG_SEV(pricing_engine_type_handler_lg(), debug) << ...;
The verbose name adds nothing over a simple lg() because the log category is already embedded in the Boost.Log channel / severity filter. Change the code generator templates to emit lg() universally, deriving the log sink name from the compilation unit at registration time.