将 django manage.py 输出(在 Windows 中)重定向到文本文件
我正在尝试将 Manage.py 的输出重定向到文本文件,但只有一些输出被重定向到文本文件。如何将所有输出重定向到文本文件?
我的命令提示符:
C:\Development\web-py\p1st2\pianos1st-system>python manage.py test > test_results.txt
.....................................................................................................................
----------------------------------------------------------------------
Ran 117 tests in 2.026s
OK
我的 test_results.txt 文件:
Creating test database for alias 'default'...
Destroying test database for alias 'default'...
我使用的是 Windows 7 32 位 SP1 和 Django SVN。
I'm trying to redirect the output from manage.py to a text file, but only some output is getting redirected to the text file. How do I redirect all output to the text file?
My command prompt:
C:\Development\web-py\p1st2\pianos1st-system>python manage.py test > test_results.txt
.....................................................................................................................
----------------------------------------------------------------------
Ran 117 tests in 2.026s
OK
My test_results.txt file:
Creating test database for alias 'default'...
Destroying test database for alias 'default'...
I'm using Windows 7 32bit SP1 and Django SVN.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
某些类型的控制台消息将绕过输出重定向(或调用任何使用“>”的内容)。我注意到 sys.stderr.write() 例如就是这样做的。
在末尾添加“2>&1”有助于解决此问题:
编辑:解释正在发生的事情:
http://en.wikipedia.org/wiki/Redirection_(computing)#Redirecting_to_and_from_the_standard_file_handles
Certain types of console messages will bypass the output redirection (or whatever using ">" is called). I noticed that sys.stderr.write() for instance did this.
Adding a "2>&1" at the end helps with this:
Edit: Explanation of what is going on:
http://en.wikipedia.org/wiki/Redirection_(computing)#Redirecting_to_and_from_the_standard_file_handles