We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d0eea9 commit a33b961Copy full SHA for a33b961
superset/common/utils/query_cache_manager.py
@@ -141,7 +141,7 @@ def get(
141
142
cache_value = _cache[region].get(key)
143
if cache_value:
144
- logger.info("Cache key: %s", key)
+ logger.debug("Cache key: %s", key)
145
stats_logger.incr("loading_from_cache")
146
try:
147
query_cache.df = cache_value["df"]
@@ -165,7 +165,7 @@ def get(
165
error_msg_from_exception(ex),
166
exc_info=True,
167
)
168
- logger.info("Serving from cache")
+ logger.debug("Serving from cache")
169
170
if force_cached and not query_cache.is_loaded:
171
logger.warning(
0 commit comments