Branch data Line data Source code
1 : : // File created from logimpl_messages.mes on Wed Jun 22 10:57:02 2011
2 : :
3 : : #include <cstddef>
4 : : #include <log/message_types.h>
5 : : #include <log/message_initializer.h>
6 : :
7 : : namespace isc {
8 : : namespace log {
9 : :
10 : : extern const isc::log::MessageID LOGIMPL_ABOVE_MAX_DEBUG = "LOGIMPL_ABOVE_MAX_DEBUG";
11 : : extern const isc::log::MessageID LOGIMPL_BAD_DEBUG_STRING = "LOGIMPL_BAD_DEBUG_STRING";
12 : : extern const isc::log::MessageID LOGIMPL_BELOW_MIN_DEBUG = "LOGIMPL_BELOW_MIN_DEBUG";
13 : :
14 : : } // namespace log
15 : : } // namespace isc
16 : :
17 : : namespace {
18 : :
19 : : const char* values[] = {
20 : : "LOGIMPL_ABOVE_MAX_DEBUG", "debug level of %1 is too high and will be set to the maximum of %2",
21 : : "LOGIMPL_BAD_DEBUG_STRING", "debug string '%1' has invalid format",
22 : : "LOGIMPL_BELOW_MIN_DEBUG", "debug level of %1 is too low and will be set to the minimum of %2",
23 : : NULL
24 : : };
25 : :
26 : 141 : const isc::log::MessageInitializer initializer(values);
27 : :
28 : 141 : } // Anonymous namespace
29 : :
|