diff --git a/src/sageworks/utils/sageworks_cache.py b/src/sageworks/utils/sageworks_cache.py index 416d73e36..c2dd94c22 100644 --- a/src/sageworks/utils/sageworks_cache.py +++ b/src/sageworks/utils/sageworks_cache.py @@ -22,7 +22,7 @@ def __init__(self, expire=None, prefix="", postfix=""): self._actual_cache = RedisCache(expire=expire, prefix=prefix, postfix=postfix) else: # If Redis isn't available, fall back to an In-Memory Cache - log.important("Redis connect failed, using In-Memory Cache...") + log.critical("Redis connect failed, using In-Memory Cache...") self._actual_cache = Cache(expire=expire, prefix=prefix, postfix=postfix) def set(self, key, value):