blob: a96760e4aeb1c156b87d1c999935fb58eb9973b8 [file] [log] [blame]
Andrew Geissler40cb6532016-11-11 15:56:36 -06001## Note that this file is not auto generated, it is what generates the
2## elog-lookup.hpp file
3// This file was autogenerated. Do not edit!
4// See elog-gen.py for more details
5#pragma once
6
7#include <map>
8#include <vector>
9
10namespace phosphor
11{
12
13namespace logging
14{
15
16std::map<std::string,std::vector<std::string>> g_errMetaMap = {
17 % for a in errors:
18 <% meta_string = '\",\"'.join(meta[a]) %> \
19 {"${errors[a]}",{"${meta_string}"}},
20 % endfor
21};
22
23} // namespace logging
24
25} // namespace phosphor