##// END OF EJS Templates
chore(debug): improved logging for simplesvn
super-admin -
r5399:9679a5bf default
parent child Browse files
Show More
@@ -54,12 +54,12 b' class SimpleSvnApp(object):'
54 54 request_headers = self._get_request_headers(environ)
55 55 data_io = environ['wsgi.input']
56 56 req_method: str = environ['REQUEST_METHOD']
57 has_content_length = 'CONTENT_LENGTH' in environ
57 has_content_length: bool = 'CONTENT_LENGTH' in environ
58 58
59 59 path_info = self._get_url(
60 60 self.config.get('subversion_http_server_url', ''), get_path_info(environ))
61 61 transfer_encoding = environ.get('HTTP_TRANSFER_ENCODING', '')
62 log.debug('Handling: %s method via `%s`', req_method, path_info)
62 log.debug('Handling: %s method via `%s` has_content_length:%s', req_method, path_info, has_content_length)
63 63
64 64 # stream control flag, based on request and content type...
65 65 stream = False
General Comments 0
You need to be logged in to leave comments. Login now