English 中文(简体)
网上应用2/App发动机的衰减模式,无定输出错误或微额追踪
原标题:Debug mode in webapp2/App Engine doesn t output error or stack trace

使用谷歌搜索引擎最新版本、2.7和网络应用2的Im,但使节制模式仅仅给我一个空白的超文本页面,而不是显示错误和 st痕。 这似乎并不像预期行为:

"When in debug mode, any exception that is now caught is raised and the stack trace is displayed to the client" http://webapp-improved.appspot.com/guide/app.html

我做了一些错误? 如果不是的话,我如何在网络应用2中使用一种习惯错误的手稿来印记痕迹?

感谢。

EDIT:这里有一例复制错误:

页: 1

application: testapp
version: 1
runtime: python27
api_version: 1
threadsafe: true

handlers:
- url: /.*
  script: main.app

libraries:
- name: jinja2
  version: "2.6"

主编

import webapp2

# Run application
app = webapp2.WSGIApplication([webapp2.Route( / , handler= handlers.IndexHandler )], debug=True)

由于没有包含指数Handler的“手提器”档案,因此该数字投下500个服务器错误。 但是,即便是debug = 真的,光线只是一个空页,没有产生错误和 st痕,只有上诉引擎记录除外。

我没有在生产服务器上这样做。

最佳回答

Seems like this bug was fixed in the latest version of webapp2: http://code.google.com/p/webapp-improved/source/detail?r=da20281cbba3f593ca49667752c0a2395ea483c5

我猜测这些固定装置将最终列入应用引擎SDK。

问题回答

暂无回答




相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签