无法在浏览器中显示cherrypy的“access.log”

时间:2017-04-24 07:56:11

标签: python cherrypy

我尝试在浏览器中提供“access.log”但我收到错误:

“请求的资源返回的字节数多于声明的Content-Length。”

对于“error.log”,它可以工作,我既可以作为静态文件,也可以链接到它。 我猜“access.log”是通过使用它的链接更新的,并且大小不符合预期为文件提供服务的大小。

如何在不阅读“access.log”并将其显示为html-page的情况下解决这个问题?

诚恳

         'log.access_file': 'fax_print_access.txt',
         'log.error_file': 'fax_print_error.txt',

      '/fax_print_error.txt':
      {'tools.staticfile.on': True,
       'tools.staticfile.filename': os.path.join(os.path.dirname(__file__), 'fax_print_error.txt'),
      },
      '/fax_print_access.txt':
      {'tools.staticfile.on': True,
       'tools.staticfile.filename': os.path.join(os.path.dirname(__file__), 'fax_print_access.txt'),
      },

0 个答案:

没有答案