diff --git a/app/notifications/validators.py b/app/notifications/validators.py index 5631e9284..2be1e54f5 100644 --- a/app/notifications/validators.py +++ b/app/notifications/validators.py @@ -12,7 +12,6 @@ def check_service_message_limit(key_type, service): if key_type != KEY_TYPE_TEST: cache_key = redis.daily_limit_cache_key(service.id) service_stats = redis_store.get(cache_key) - print(service_stats) if not service_stats: service_stats = services_dao.fetch_todays_total_message_count(service.id) redis_store.set(cache_key, service_stats, ex=3600)