Fix one last use of TRACE().

am: 80f170a3c6

Change-Id: If35e8f48c41d4cbb467c8b34559d6ebde6199845
This commit is contained in:
Jorge Lucangeli Obes 2016-07-27 03:11:33 +00:00 committed by android-build-merger
commit 0ed2a0871e

View file

@ -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) {