From: Sage Weil Date: Fri, 6 May 2011 21:57:06 +0000 (-0700) Subject: common: be a little less scary in our startup warning X-Git-Tag: v0.28~60 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e9550b57117585504a2652bc371383ebf1478d4c;p=ceph.git common: be a little less scary in our startup warning - be less scary - be helpful and tell them where to go Signed-off-by: Sage Weil --- diff --git a/src/common/common_init.cc b/src/common/common_init.cc index 12fff794c44..163a1dcd5c0 100644 --- a/src/common/common_init.cc +++ b/src/common/common_init.cc @@ -186,10 +186,11 @@ void common_init(std::vector < const char* >& args, install_standard_sighandlers(); if (code_env == CODE_ENVIRONMENT_DAEMON) { - cout << TEXT_YELLOW << " ** WARNING: Ceph is still under heavy development, " - << "and is only suitable for **" << TEXT_NORMAL << std::endl; - cout << TEXT_YELLOW << " ** testing and review. Do not trust it " - << "with important data. **" << TEXT_NORMAL << std::endl; + cout << TEXT_YELLOW + << " ** WARNING: Ceph is still under development. Any feedback can be directed **" + << TEXT_NORMAL << "\n" << TEXT_YELLOW + << " ** at ceph-devel@vger.kernel.org or http://ceph.newdream.net/. **" + << TEXT_NORMAL << std::endl; output_ceph_version(); } }