// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- // vim: ts=8 sw=2 smarttab ft=cpp #include #include #include #include "rgw_client_io.h" #include "rgw_crypt.h" #include "rgw_crypt_sanitize.h" #define dout_subsys ceph_subsys_rgw namespace rgw { namespace io { [[nodiscard]] int BasicClient::init(CephContext *cct) { int init_error = init_env(cct); if (init_error != 0) return init_error; if (cct->_conf->subsys.should_gather()) { const auto& env_map = get_env().get_map(); for (const auto& iter: env_map) { rgw::crypt_sanitize::env x{iter.first, iter.second}; ldout(cct, 20) << iter.first << "=" << (x) << dendl; } } return init_error; } } /* namespace io */ } /* namespace rgw */