simple.py 198 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 # -*- coding: utf-8 -*- import logging LOG = logging.getLogger() LOG.setLevel(logging.DEBUG) def handler(event, context): assert context LOG.debug(event) return {'status': 'success'}