cleaned up all this logging stuff. logging to files does not work anymore but that will be fixed. use -q when starting linspector for now

This commit is contained in:
Johannes Findeisen 2013-10-27 02:28:20 +01:00
commit cbb106ee8a
38 changed files with 188 additions and 164 deletions

View file

@ -23,9 +23,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
import datetime
import smtplib
from email.mime.text import MIMEText
from logging import getLogger
from linspector.tasks.task import Task
logger = getLogger(__name__)
class MailTask(Task):
def __init__(self, **kwargs):