X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Frgw%2Frgw_civetweb_log.cc;fp=src%2Fceph%2Fsrc%2Frgw%2Frgw_civetweb_log.cc;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=2c2e9ccfdd351da1aa65192999825ff7bd0e20a6;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/rgw/rgw_civetweb_log.cc b/src/ceph/src/rgw/rgw_civetweb_log.cc deleted file mode 100644 index 2c2e9cc..0000000 --- a/src/ceph/src/rgw/rgw_civetweb_log.cc +++ /dev/null @@ -1,21 +0,0 @@ -#include "common/config.h" -#include "rgw_common.h" - -#include "civetweb/civetweb.h" -#include "rgw_crypt_sanitize.h" - -#define dout_subsys ceph_subsys_civetweb - - -#define dout_context g_ceph_context -int rgw_civetweb_log_callback(const struct mg_connection *conn, const char *buf) { - dout(0) << "civetweb: " << (void *)conn << ": " << rgw::crypt_sanitize::log_content(buf) << dendl; - return 0; -} - -int rgw_civetweb_log_access_callback(const struct mg_connection *conn, const char *buf) { - dout(1) << "civetweb: " << (void *)conn << ": " << rgw::crypt_sanitize::log_content(buf) << dendl; - return 0; -} - -