| 43 | } |
| 44 | |
| 45 | void EditJournal::AddBusinessReplacement(uint32_t old_type, uint32_t new_type) |
| 46 | { |
| 47 | LOG(LDEBUG, ("Business of type ", classif().GetReadableObjectName(old_type), " was replaced by a ", |
| 48 | classif().GetReadableObjectName(new_type))); |
| 49 | AddJournalEntry( |
| 50 | {JournalEntryType::BusinessReplacement, time(nullptr), osm::BusinessReplacementData{old_type, new_type}}); |
| 51 | } |
| 52 | |
| 53 | void EditJournal::AddJournalEntry(JournalEntry entry) |
| 54 | { |
no test coverage detected