diff options
Diffstat (limited to 'vold/vold.c')
-rw-r--r-- | vold/vold.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vold/vold.c b/vold/vold.c index 17331ac..7d50a2f 100644 --- a/vold/vold.c +++ b/vold/vold.c @@ -60,7 +60,7 @@ int main(int argc, char **argv) struct sockaddr_nl nladdr; int uevent_sz = 64 * 1024; - LOG_VOL("Android Volume Daemon version %d.%d", ver_major, ver_minor); + LOGI("Android Volume Daemon version %d.%d", ver_major, ver_minor); /* * Create all the various sockets we'll need @@ -208,7 +208,7 @@ int send_msg(char* message) pthread_mutex_lock(&write_mutex); - LOG_VOL("send_msg(%s):", message); +// LOG_VOL("send_msg(%s):", message); if (fw_sock >= 0) result = write(fw_sock, message, strlen(message) + 1); |