作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我执行以下操作:
try:
result = urlfetch.fetch(url=some_url,
...
except DownloadError:
self.response.out.write('DownloadError')
logging.error('DownloadError')
except Error:
self.response.out.write('Error')
logging.error('Error')
最佳答案
您应该使用logging.exception
将Exception添加到ERROR日志消息中:
try:
result = urlfetch.fetch(url=some_url,
...
except DownloadError, exception:
self.response.out.write('Oops, DownloadError: %s' % exception)
logging.exception('DownloadError')
except Error:
self.response.out.write('Oops, Error')
logging.exception('Error')
关于google-app-engine - 如何获取DownloadError的详细信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7506330/
我正在构建一个使用 FFMPEG 下载和播放音乐的不和谐音乐机器人。 yt-dlp 似乎由于某种原因无法找到 ffmpeg 文件,尽管我给了它直接路径。当我在我的 cpu 上运行它时它工作得很好,但它
我在尝试使用 urlfetch.fetch 请求特定 url 时遇到奇怪的 DownloadError 示例代码如下: url = 'https://iiko.net:9900/api/0/auth/
我们有两个应用程序都在 Google App Engine 上运行。 App1 作为经过身份验证的用户向 app2 发出请求。身份验证通过从 Google ClientLogin 请求身份验证 tok
从这个线程获得帮助:download only audio from youtube video using youtube-dl in python script import youtube_dl
youtube-dl.utils.DownloadError: ERROR: audio conversion failed: file: mp3 invalid argument 上面的错误出现了以
我是一名优秀的程序员,十分优秀!