Make naming consistent
RoySRC opened this issue · 1 comments
RoySRC commented
Is your feature request related to a problem? Please describe.
Name inconsistencies in logger. Some places such as when initializing the logger we have logger_init()
while to use the logger we need cpplogger_info(...)
.
Describe the solution you'd like
It would be great to replace cpplogger_info(...)
with just logger_info(...)
. This means less typing and also makes the naming consistent.