From 42d1be1a8d0eda22c17cddc411b443af564cccb9 Mon Sep 17 00:00:00 2001 From: Adhidarma Hadiwinoto <gua@adhisimon.org> Date: Fri, 11 Mar 2016 16:20:41 +0700 Subject: [PATCH] remove overlimit products, verbose --- main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.py b/main.py index 9cb9779..a767d36 100755 --- a/main.py +++ b/main.py @@ -714,12 +714,15 @@ def removeOverLimitProducts(): global PRODUCTS if os.path.isfile('XL5.deny'): + logger.warning('XL5.deny found, removing XL5') sate24.removeProduct(PRODUCTS, 'XL5') if os.path.isfile('XL10.deny'): + logger.warning('XL10.deny found, removing XL10') sate24.removeProduct(PRODUCTS, 'XL10') if os.path.isfile('ALL.deny'): + logger.warning('ALL.deny found, removing all products') sate24.removeProduct(PRODUCTS, 'XL5') sate24.removeProduct(PRODUCTS, 'XL10') -- 1.9.0