Skip to content

Instantly share code, notes, and snippets.

@iorionda
Created September 8, 2016 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iorionda/df24542e8db1713bac0e1ccfe996145a to your computer and use it in GitHub Desktop.
Save iorionda/df24542e8db1713bac0e1ccfe996145a to your computer and use it in GitHub Desktop.
heroku で logging
import sys
import logging
from flask import Flask
app = Flask(__name__)
app.logger.addHandler(logging.StreamHandler(sys.stdout))
app.logger.setLevel(logging.ERROR)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment