]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
client: fix log data
authorAndras Elso <elso.andras@gmail.com>
Tue, 26 Feb 2013 23:24:44 +0000 (00:24 +0100)
committerAndras Elso <elso.andras@gmail.com>
Wed, 27 Feb 2013 00:52:54 +0000 (01:52 +0100)
Signed-off-by: Andras Elso <elso.andras@gmail.com>
src/client/Client.cc

index 697804431aaa15f383f5e899f86d770ed89d5643..6b8cbe76aa93ab0229c030b62144d63f57ee9352 100644 (file)
@@ -4302,6 +4302,7 @@ int Client::setattr(const char *relpath, struct stat *attr, int mask)
 {
   Mutex::Locker lock(client_lock);
   tout(cct) << "setattr" << std::endl;
+  tout(cct) << relpath << std::endl;
   tout(cct) << mask  << std::endl;
 
   filepath path(relpath);
@@ -4470,7 +4471,7 @@ int Client::fchown(int fd, uid_t uid, gid_t gid)
 int Client::lchown(const char *relpath, uid_t uid, gid_t gid)
 {
   Mutex::Locker lock(client_lock);
-  tout(cct) << "chown" << std::endl;
+  tout(cct) << "lchown" << std::endl;
   tout(cct) << relpath << std::endl;
   tout(cct) << uid << std::endl;
   tout(cct) << gid << std::endl;