@@ -848,7 +848,7 @@ DB::Names RestCatalog::parseTables(DB::ReadBuffer & buf, const std::string & bas
848848 String json_str;
849849 readJSONObjectPossiblyInvalid (json_str, buf);
850850
851- LOG_DEBUG (log, " Received tables response: {}" , json_str );
851+ LOG_DEBUG (log, " Received tables response for namespace : {}" , base_namespace );
852852
853853 try
854854 {
@@ -946,7 +946,6 @@ bool RestCatalog::getTableMetadataImpl(
946946
947947 String json_str;
948948 readJSONObjectPossiblyInvalid (json_str, *buf);
949- LOG_DEBUG (log, " Receiving table metadata {} {}" , table_name, json_str);
950949
951950#ifdef DEBUG_OR_SANITIZER_BUILD
952951 // / This log message might contain credentials,
@@ -1221,7 +1220,7 @@ std::pair<std::shared_ptr<IStorageCredentials>, String> RestCatalog::getCredenti
12211220 if (object->has (storage_endpoint_str))
12221221 storage_endpoint = object->get (storage_endpoint_str).extract <String>();
12231222
1224- LOG_DEBUG (log, " initial tokens {} {} {}" , access_key_id, secret_access_key, session_token );
1223+ LOG_DEBUG (log, " get tokens for location {}" , location );
12251224 return {std::make_shared<S3Credentials>(access_key_id, secret_access_key, session_token), storage_endpoint};
12261225 }
12271226 case StorageType::Azure:
@@ -1277,7 +1276,6 @@ ICatalog::CredentialsRefreshCallback RestCatalog::getCredentialsConfigurationCal
12771276
12781277 String json_str;
12791278 readJSONObjectPossiblyInvalid (json_str, *buf);
1280- LOG_DEBUG (log, " Receiving table metadata {} {}" , table_name, json_str);
12811279
12821280 Poco::JSON::Parser parser;
12831281 Poco::Dynamic::Var json = parser.parse (json_str);
0 commit comments