Fix one last use of TRACE().

Bug: 30222003
Change-Id: I3d0a29cb92e83416eb6851b54cb72886da4f7cf2
This commit is contained in:
Jorge Lucangeli Obes 2016-07-26 20:07:10 -04:00
parent b49e54b1d7
commit a65f3e1a1f
1 changed files with 2 additions and 2 deletions

View File

@ -1272,8 +1272,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) {