1 #include "elog_entry.hpp"
2 #include "log_manager.hpp"
3 
4 namespace phosphor
5 {
6 namespace logging
7 {
8 
9 // TODO Add interfaces to handle the error log id numbering
10 
11 void Entry::delete_()
12 {
13     parent.erase(id());
14 }
15 
16 } // namespace logging
17 } // namepsace phosphor
18