diff options
author | Patrick Donnelly <pdonnell@redhat.com> | 2016-11-18 03:02:36 +0100 |
---|---|---|
committer | Patrick Donnelly <pdonnell@redhat.com> | 2016-11-18 03:03:02 +0100 |
commit | b8b110971b28b133c8f4be9b9958f0ef1f1f3164 (patch) | |
tree | 942be83975723bd386f690dee391e66e2d1ba771 /src/ceph_fuse.cc | |
parent | Merge pull request #11701 from athanatos/wip-ec-partial-overwrites (diff) | |
download | ceph-b8b110971b28b133c8f4be9b9958f0ef1f1f3164.tar.xz ceph-b8b110971b28b133c8f4be9b9958f0ef1f1f3164.zip |
client: improve failure messages/debugging
Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
Diffstat (limited to 'src/ceph_fuse.cc')
-rw-r--r-- | src/ceph_fuse.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ceph_fuse.cc b/src/ceph_fuse.cc index f5d04daeef9..5c6118a8e9d 100644 --- a/src/ceph_fuse.cc +++ b/src/ceph_fuse.cc @@ -220,7 +220,7 @@ int main(int argc, const char **argv, const char *envp[]) { cout << "ceph-fuse[" << getpid() << "]: starting ceph client" << std::endl; r = messenger->start(); if (r < 0) { - cerr << "ceph-fuse[" << getpid() << "]: ceph mount failed with " << cpp_strerror(-r) << std::endl; + cerr << "ceph-fuse[" << getpid() << "]: ceph messenger failed with " << cpp_strerror(-r) << std::endl; goto out_messenger_start_failed; } @@ -230,7 +230,7 @@ int main(int argc, const char **argv, const char *envp[]) { // start client r = client->init(); if (r < 0) { - cerr << "ceph-fuse[" << getpid() << "]: ceph mount failed with " << cpp_strerror(-r) << std::endl; + cerr << "ceph-fuse[" << getpid() << "]: ceph client failed with " << cpp_strerror(-r) << std::endl; goto out_init_failed; } |