diff options
| author | Jorge Lucangeli Obes <jorgelo@google.com> | 2016-07-26 20:07:10 -0400 |
|---|---|---|
| committer | Dan Willemsen <dwillemsen@google.com> | 2016-07-29 22:02:41 +0000 |
| commit | 8df46540b4d0af156583eecaea79c1e131c76f8a (patch) | |
| tree | 97c1e0d313023fb4c447d57cc25d5c9665265c01 /sdcard | |
| parent | 89cc78b77ff162d061a4bb0cc920c48a1ac3ed91 (diff) | |
| download | system_core-8df46540b4d0af156583eecaea79c1e131c76f8a.tar.gz system_core-8df46540b4d0af156583eecaea79c1e131c76f8a.tar.bz2 system_core-8df46540b4d0af156583eecaea79c1e131c76f8a.zip | |
Fix one last use of TRACE().
Bug: 30222003
Change-Id: I3d0a29cb92e83416eb6851b54cb72886da4f7cf2
(cherry picked from commit a65f3e1a1fdaf2a23f0cea0d0aedee81117a6e1a)
Diffstat (limited to 'sdcard')
| -rw-r--r-- | sdcard/fuse.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sdcard/fuse.cpp b/sdcard/fuse.cpp index 2b1eda73e..6a972ea76 100644 --- a/sdcard/fuse.cpp +++ b/sdcard/fuse.cpp @@ -1278,8 +1278,8 @@ static int handle_canonical_path(struct fuse* fuse, struct fuse_handler* handler pthread_mutex_lock(&fuse->global->lock); node = lookup_node_and_path_by_id_locked(fuse, hdr->nodeid, path, sizeof(path)); - TRACE("[%d] CANONICAL_PATH @ %" PRIx64 " (%s)\n", handler->token, hdr->nodeid, - node ? node->name : "?"); + DLOG(INFO) << "[" << handler->token << "] CANONICAL_PATH @ " << std::hex << hdr->nodeid + << std::dec << " (" << (node ? node->name : "?") << ")"; pthread_mutex_unlock(&fuse->global->lock); if (!node) { |
