lots of formatting/naming fixes and changed Context::name to std::string
diff --git a/aos/common/logging/logging_impl.cc b/aos/common/logging/logging_impl.cc
index 7b49f7b..64696dc 100644
--- a/aos/common/logging/logging_impl.cc
+++ b/aos/common/logging/logging_impl.cc
@@ -101,7 +101,7 @@
message->level = level;
message->source = context->source;
- memcpy(message->name, context->name, context->name_size);
+ memcpy(message->name, context->name.c_str(), context->name.size() + 1);
time::Time now = time::Time::Now();
message->seconds = now.sec();