From e81f51f44b4cfb8316de1d206038414ee6f6e96b Mon Sep 17 00:00:00 2001 From: Hung-ying Tyan Date: Sat, 1 Aug 2009 10:11:46 +0800 Subject: Change some log.i to log.d. --- cmds/keystore/netkeystore.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cmds') 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); } -- cgit v1.1