summaryrefslogtreecommitdiffstats
path: root/src/lib/log/tests/log_test_messages.cc
blob: 6695050a407160d3a965153b5dc9fe95e08ce79c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// File created from ../../../../src/lib/log/tests/log_test_messages.mes on Fri Oct 23 2020 14:07

#include <cstddef>
#include <log/message_types.h>
#include <log/message_initializer.h>

namespace isc {
namespace log {

extern const isc::log::MessageID LOG_LOCK_TEST_MESSAGE = "LOG_LOCK_TEST_MESSAGE";

} // namespace log
} // namespace isc

namespace {

const char* values[] = {
    "LOG_LOCK_TEST_MESSAGE", "this is a test message.",
    NULL
};

const isc::log::MessageInitializer initializer(values);

} // Anonymous namespace