diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2012-01-13 14:31:55 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-01-13 14:40:58 +0200 |
commit | 72baf88773286ee9c13984c6bc6bb9ff705cadd4 (patch) | |
tree | d92cc0d04107c5363df15a0a329c387d2c6e4b35 /sal/android/lo-bootstrap.c | |
parent | 6bfc9eda7a9171c0fda40c3fee38bb4eec6c9cde (diff) |
Comment out the verbose logging of code that seems to work fine
Diffstat (limited to 'sal/android/lo-bootstrap.c')
-rw-r--r-- | sal/android/lo-bootstrap.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sal/android/lo-bootstrap.c b/sal/android/lo-bootstrap.c index c827ea913ab5..aaf823703231 100644 --- a/sal/android/lo-bootstrap.c +++ b/sal/android/lo-bootstrap.c @@ -1035,7 +1035,7 @@ lo_apk_readdir(lo_apk_dir *dirp) static struct dirent result; if (dirp->cur == NULL) { - LOGI("lo_apk_readdir(%p) = NULL", dirp); + /* LOGI("lo_apk_readdir(%p) = NULL", dirp); */ return NULL; } @@ -1053,7 +1053,7 @@ lo_apk_readdir(lo_apk_dir *dirp) dirp->cur = dirp->cur->hh.next; - LOGI("lo_apk_readdir(%p) = %s:%s", dirp, result.d_type == DT_DIR ? "DIR" : "REG", result.d_name); + /* LOGI("lo_apk_readdir(%p) = %s:%s", dirp, result.d_type == DT_DIR ? "DIR" : "REG", result.d_name); */ return &result; } @@ -1064,7 +1064,7 @@ lo_apk_closedir(lo_apk_dir *dirp) { free(dirp); - LOGI("lo_apk_closedir(%p)", dirp); + /* LOGI("lo_apk_closedir(%p)", dirp); */ return 0; } @@ -1091,7 +1091,8 @@ new_stat(const char *path, /* Leave timestamps at zero for now? */ statp->st_ino = fake_ino; - LOGI("lo_apk_lstat(%s) = { st_mode=%o, st_size=%lld, st_ino=%lld }", path, statp->st_mode, statp->st_size, statp->st_ino); + (void) path; + /* LOGI("lo_apk_lstat(%s) = { st_mode=%o, st_size=%lld, st_ino=%lld }", path, statp->st_mode, statp->st_size, statp->st_ino); */ return 0; } |