| OLD | NEW |
| 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Enable AppStats. | 5 """Enable AppStats. |
| 6 | 6 |
| 7 See https://developers.google.com/appengine/docs/python/tools/appstats | 7 See https://developers.google.com/appengine/docs/python/tools/appstats |
| 8 """ | 8 """ |
| 9 from google.appengine.ext.appstats import recording | 9 from google.appengine.ext.appstats import recording |
| 10 | 10 |
| 11 appstats_SHELL_OK = True | 11 appstats_SHELL_OK = True |
| 12 | 12 |
| 13 | 13 |
| 14 def webapp_add_wsgi_middleware(app): | 14 def webapp_add_wsgi_middleware(app): |
| 15 app = recording.appstats_wsgi_middleware(app) | 15 app = recording.appstats_wsgi_middleware(app) |
| 16 return app | 16 return app |
| OLD | NEW |