]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: tone down some log messages
authorYehuda Sadeh <yehuda@hq.newdream.net>
Mon, 12 Mar 2012 20:22:49 +0000 (13:22 -0700)
committerYehuda Sadeh <yehuda@hq.newdream.net>
Mon, 12 Mar 2012 20:22:49 +0000 (13:22 -0700)
dout(0) -> dout(1)

Signed-off-by: Yehuda Sadeh <yehuda@hq.newdream.net>
src/rgw/rgw_main.cc

index 4d04b44bc44ab314ccd729bd2be5662e1a3d5106..6e90efa9df7ada887c6f8b7eb0cc38b910c70c95 100644 (file)
@@ -232,7 +232,7 @@ void RGWProcess::handle_request(RGWRequest *req)
 
   req->log_init();
 
-  dout(0) << "====== starting new request req=" << hex << req << dec << " =====" << dendl;
+  dout(1) << "====== starting new request req=" << hex << req << dec << " =====" << dendl;
   perfcounter->inc(l_rgw_req);
 
   rgw_env.init(fcgx->envp);
@@ -310,7 +310,7 @@ done:
   FCGX_Finish_r(fcgx);
   delete req;
 
-  dout(0) << "====== req done req=" << hex << req << dec << " http_status=" << http_ret << " ======" << dendl;
+  dout(1) << "====== req done req=" << hex << req << dec << " http_status=" << http_ret << " ======" << dendl;
 }
 
 class C_InitTimeout : public Context {