summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authorHung-ying Tyan <tyanh@google.com>2009-08-01 10:11:46 +0800
committerHung-ying Tyan <tyanh@google.com>2009-08-01 10:11:46 +0800
commit6cdee5801063c9c332193a186d973a4993c1dd31 (patch)
treee36a446ca5e1fcd70b4dfb44ef0c095b4f8abe30 /cmds
parent907a880fa24500aa4e3476f99cfabf4343236435 (diff)
downloadframeworks_native-6cdee5801063c9c332193a186d973a4993c1dd31.zip
frameworks_native-6cdee5801063c9c332193a186d973a4993c1dd31.tar.gz
frameworks_native-6cdee5801063c9c332193a186d973a4993c1dd31.tar.bz2
Change some log.i to log.d.
Diffstat (limited to 'cmds')
-rw-r--r--cmds/keystore/netkeystore.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cmds/keystore/netkeystore.c b/cmds/keystore/netkeystore.c
index eac455e..637e0d8 100644
--- a/cmds/keystore/netkeystore.c
+++ b/cmds/keystore/netkeystore.c
@@ -37,6 +37,7 @@
#include "netkeystore.h"
#include "keymgmt.h"
+#define DBG 1
#define CMD_PUT_WITH_FILE "putfile"
typedef void CMD_FUNC(LPC_MARSHAL *cmd, LPC_MARSHAL *reply);
@@ -397,12 +398,12 @@ int main(const int argc, const char *argv[])
// read the command, execute and send the result back.
if(read_marshal(s, &cmd)) goto err;
- LOGI("new connection\n");
+ if (DBG) LOGD("new connection\n");
execute(&cmd, &reply);
write_marshal(s, &reply);
err:
memset(&reply, 0, sizeof(LPC_MARSHAL));
- LOGI("closing connection\n");
+ if (DBG) LOGD("closing connection\n");
close(s);
}