summaryrefslogtreecommitdiff
path: root/debuggerd/debuggerd.cpp
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@google.com>2015-10-22 13:04:22 -0700
committerDan Willemsen <dwillemsen@google.com>2015-10-22 13:12:18 -0700
commit30622bbb209db187f6851e4cf0cdaa147c2fca9f (patch)
treea44de699c1a54f4df2541d57616af75f9c816aa6 /debuggerd/debuggerd.cpp
parentc52b3c08fa5ea3680ffcd68c2a1d0542d09f0509 (diff)
Remove __DATE__/__TIME__ from init and debuggerd
Keeping these means that every build has different init and debuggerd binaries, even if the source was the same. So OTAs that don't touch these sources would still need to update the binaries. Both of these messages are only informational, so can be safely removed. Bootchart already encodes build-specific information from the system properties. Bug: 24204119 Change-Id: I7ebd65a20a3e031e7528c9f741616e20b3cd7446
Diffstat (limited to 'debuggerd/debuggerd.cpp')
-rw-r--r--debuggerd/debuggerd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/debuggerd/debuggerd.cpp b/debuggerd/debuggerd.cpp
index 713638d11..1287fb940 100644
--- a/debuggerd/debuggerd.cpp
+++ b/debuggerd/debuggerd.cpp
@@ -528,7 +528,7 @@ static int do_server() {
return 1;
fcntl(s, F_SETFD, FD_CLOEXEC);
- ALOGI("debuggerd: " __DATE__ " " __TIME__ "\n");
+ ALOGI("debuggerd: starting\n");
for (;;) {
sockaddr addr;