summaryrefslogtreecommitdiffstats
path: root/src/ceph_fuse.cc
diff options
context:
space:
mode:
authorPatrick Donnelly <pdonnell@redhat.com>2016-11-18 03:02:36 +0100
committerPatrick Donnelly <pdonnell@redhat.com>2016-11-18 03:03:02 +0100
commitb8b110971b28b133c8f4be9b9958f0ef1f1f3164 (patch)
tree942be83975723bd386f690dee391e66e2d1ba771 /src/ceph_fuse.cc
parentMerge pull request #11701 from athanatos/wip-ec-partial-overwrites (diff)
downloadceph-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.cc4
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;
}