diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/services/ce/TenantServiceCEImpl.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/services/ce/TenantServiceCEImpl.java index 4c4baaa2b29b..2592b08a00fe 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/services/ce/TenantServiceCEImpl.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/services/ce/TenantServiceCEImpl.java @@ -186,7 +186,8 @@ public Mono getDefaultTenant() { .tap(Micrometer.observation(observationRegistry)) .flatMap(tenant -> repository.setUserPermissionsInObject(tenant).switchIfEmpty(Mono.just(tenant))) .onErrorResume(e -> { - log.error("Error fetching default tenant from redis!", e); + e.printStackTrace(); + log.error("Error fetching default tenant from redis : {}", e.getMessage()); // If there is an error fetching the tenant from the cache, then evict the cache and fetching from // the db. This handles the case for deserialization errors. This prevents the entire instance to // go down if tenant cache is corrupted.