diff options
Diffstat (limited to 'src/lib/log/logimpl_messages.cc')
-rw-r--r-- | src/lib/log/logimpl_messages.cc | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/lib/log/logimpl_messages.cc b/src/lib/log/logimpl_messages.cc new file mode 100644 index 0000000..12a6442 --- /dev/null +++ b/src/lib/log/logimpl_messages.cc @@ -0,0 +1,29 @@ +// File created from ../../../src/lib/log/logimpl_messages.mes + +#include <cstddef> +#include <log/message_types.h> +#include <log/message_initializer.h> + +namespace isc { +namespace log { + +extern const isc::log::MessageID LOGIMPL_ABOVE_MAX_DEBUG = "LOGIMPL_ABOVE_MAX_DEBUG"; +extern const isc::log::MessageID LOGIMPL_BAD_DEBUG_STRING = "LOGIMPL_BAD_DEBUG_STRING"; +extern const isc::log::MessageID LOGIMPL_BELOW_MIN_DEBUG = "LOGIMPL_BELOW_MIN_DEBUG"; + +} // namespace log +} // namespace isc + +namespace { + +const char* values[] = { + "LOGIMPL_ABOVE_MAX_DEBUG", "debug level of %1 is too high and will be set to the maximum of %2", + "LOGIMPL_BAD_DEBUG_STRING", "debug string '%1' has invalid format", + "LOGIMPL_BELOW_MIN_DEBUG", "debug level of %1 is too low and will be set to the minimum of %2", + NULL +}; + +const isc::log::MessageInitializer initializer(values); + +} // Anonymous namespace + |