Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public Catalog createCallContextCatalog(

String realm = context.getRealmContext().getRealmIdentifier();
String catalogKey = realm + "/" + catalogName;
LOGGER.info("Initializing new BasePolarisCatalog for key: {}", catalogKey);
LOGGER.debug("Initializing new BasePolarisCatalog for key: {}", catalogKey);

PolarisEntityManager entityManager =
entityManagerFactory.getOrCreateEntityManager(context.getRealmContext());
Expand All @@ -98,7 +98,8 @@ public Catalog createCallContextCatalog(
CatalogEntity catalog = CatalogEntity.of(baseCatalogEntity);
Map<String, String> catalogProperties = new HashMap<>(catalog.getPropertiesAsMap());
String defaultBaseLocation = catalog.getDefaultBaseLocation();
LOGGER.info("Looked up defaultBaseLocation {} for catalog {}", defaultBaseLocation, catalogKey);
LOGGER.debug(
"Looked up defaultBaseLocation {} for catalog {}", defaultBaseLocation, catalogKey);
catalogProperties.put(
CatalogProperties.WAREHOUSE_LOCATION,
Objects.requireNonNullElseGet(
Expand Down