Skip to content

Commit

Permalink
Revert logging changes, so that logs go to standard output/error again.
Browse files Browse the repository at this point in the history
Fixes #336
  • Loading branch information
davidmegginson committed Aug 5, 2020
1 parent 383fff9 commit f32773d
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions hxl_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Documentation: http://hxlstandard.org
"""

import logging, os
import os

import requests_cache
from flask import Flask, g, request
Expand All @@ -24,9 +24,6 @@
# Main application object
app = Flask(__name__)

# Disable default logging (we'll add any log handlers explicitly in deployment)
app.logger.addHandler(logging.NullHandler())

# Handle subpaths
app.wsgi_app = reverse_proxied.ReverseProxied(app.wsgi_app)

Expand Down

0 comments on commit f32773d

Please sign in to comment.