简体   繁体   English

如何使用Flickzeug从粘贴部署WSGI管道中获取交互式回溯?

[英]How do I use Flickzeug to get interactive tracebacks from a paste deploy WSGI pipeline?

I'd like to use Flickzeug to see interactive tracebacks by adding it to my paste deploy file's pipeline . 我想使用Flickzeug通过将其添加到粘贴部署文件的pipeline来查看交互式回溯。 The following doesn't work. 以下无效。 What will? 会怎样

[pipeline]
pipeline =
    flickzeug
    myapp

Use the filter-with directive in your application declaration. 在应用程序声明中使用filter-with指令。

[app:main]
use = ...
...

filter-with = flickzeug


[filter:flickzeug]
use = egg:...#...
...

For more information, see the first example in the Filter Composition section of the Paste Deploy documentation . 有关更多信息,请参见Paste Deploy文档的“过滤器组成”部分中的第一个示例。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM