add: log messages woth python module 'logging' instead of print

This commit is contained in:
Bernhard Stampfer
2016-05-07 20:51:06 +02:00
parent d124755c88
commit 54ce22c0c1
6 changed files with 36 additions and 28 deletions

View File

@@ -3,7 +3,7 @@ from flask import session, render_template
from user import User
from database import *
from functools import wraps
import logging
def requires_baron(fn):
@wraps(fn)