0

ピストンが例外の完全なトレースバックを返すようにする方法。デフォルトでは、最後のエラーテキストのみが返されます。好き

id() takes exactly one argument (0 given)

どのファイルとどの行を知る必要があります...

4

1 に答える 1

1

Pistonは、を介してhttpステータス応答をロードしますutils.rc。エラーは発生しません。

ドキュメントから:

Configuration variables
Piston is configurable in a couple of ways, which allows more granular 
control of some areas without editing the code.

Setting                         Meaning
settings.PISTON_EMAIL_ERRORS    If (when) Piston crashes, it will email the 
                                administrators a backtrace (like the Django one
                                you see during DEBUG = True)
settings.PISTON_DISPLAY_ERRORS  Upon crashing, will display a small backtrace 
                                to the client, including the method signature 
                                expected.
settings.PISTON_STREAM_OUTPUT   When enabled, Piston will instruct Django to 
                                stream the output to the client, but please read
                                streaming before enabling it.

ロガーをセットアップすることをお勧めします。歩哨レイヴンはかなり便利で、独自のログレベルとハンドラーを構成できます。

于 2013-01-07T15:48:25.483 に答える