logger.cc: remove unused function append_property (#24966)

remove append_property
pull/24975/head
Dean Lee 3 years ago committed by GitHub
parent 72edc30932
commit 461f747247
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      selfdrive/loggerd/logger.cc

@ -19,15 +19,6 @@
#include "common/swaglog.h"
#include "common/version.h"
// ***** logging helpers *****
void append_property(const char* key, const char* value, void *cookie) {
std::vector<std::pair<std::string, std::string> > *properties =
(std::vector<std::pair<std::string, std::string> > *)cookie;
properties->push_back(std::make_pair(std::string(key), std::string(value)));
}
// ***** log metadata *****
kj::Array<capnp::word> logger_build_init_data() {
MessageBuilder msg;

Loading…
Cancel
Save