]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
common: be a little less scary in our startup warning
authorSage Weil <sage@newdream.net>
Fri, 6 May 2011 21:57:06 +0000 (14:57 -0700)
committerSage Weil <sage@newdream.net>
Fri, 6 May 2011 21:57:06 +0000 (14:57 -0700)
- be less scary
- be helpful and tell them where to go

Signed-off-by: Sage Weil <sage@newdream.net>
src/common/common_init.cc

index 12fff794c442ad9fab9d2d074698e70c49d8ece2..163a1dcd5c0f2bfcdc95b506c21448270206f170 100644 (file)
@@ -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();
   }
 }