From 978a0e25c4affc464f20ab1498de51489d107c85 Mon Sep 17 00:00:00 2001 From: Koushik Dutta Date: Sun, 27 Feb 2011 17:58:26 -0800 Subject: [PATCH] logging Change-Id: Id835419f1ed3d9cf9c946f73a35eddc3ac029a2c --- roots.c | 1 + 1 file changed, 1 insertion(+) diff --git a/roots.c b/roots.c index 818ed1c..80d9169 100644 --- a/roots.c +++ b/roots.c @@ -127,6 +127,7 @@ int try_mount(const char* device, const char* mount_point, const char* fs_type, else { char mount_cmd[PATH_MAX]; sprintf(mount_cmd, "mount -t %s -o%s %s %s", fs_type, fs_options, device, mount_point); + LOGE(mount_cmd); ret = __system(mount_cmd); } if (ret == 0)