diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2015-05-14 08:23:52 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2015-05-14 08:23:52 (GMT) |
commit | 6135265f5cb4c7d7123c40447a28ef4cbc052005 (patch) | |
tree | 33a5143153da732ca50c89ad54fe4255812b7aaf /library/http | |
parent | 1913208e18b29f26c17c72fdf90fb7e8aaf3b399 (diff) | |
download | tcl-6135265f5cb4c7d7123c40447a28ef4cbc052005.zip tcl-6135265f5cb4c7d7123c40447a28ef4cbc052005.tar.gz tcl-6135265f5cb4c7d7123c40447a28ef4cbc052005.tar.bz2 |
[6a71dbe6ec] Ensure that compression errors log correctly.
Diffstat (limited to 'library/http')
-rw-r--r-- | library/http/http.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl index 4870f4a..97f6348 100644 --- a/library/http/http.tcl +++ b/library/http/http.tcl @@ -1299,7 +1299,7 @@ proc http::Eof {token {force 0}} { set state(body) [zlib $coding $state(body)] } } err]} { - Log "error doing $coding '$state(body)'" + Log "error doing decompression: $err" return [Finish $token $err] } |