File tree 4 files changed +19
-3
lines changed
src/concurrent_log_handler
4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 1
1
Metadata-Version: 1.1
2
2
Name: concurrent-log-handler
3
- Version: 0.9.14
3
+ Version: 0.9.15
4
4
Summary: RotatingFileHandler replacement with concurrency, gzip and Windows support
5
5
Home-page: https://github.com/Preston-Landers/concurrent_log_handler
6
6
Author: Preston Landers
@@ -147,6 +147,11 @@ Description:
147
147
148
148
Change Log
149
149
==========
150
+ - 0.9.15: Fix bug from last version on Python 2. (Issue #21) Thanks @condontrevor
151
+ Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
152
+ a log message to the output stream's encoding. I.e., by default it will filter
153
+ out (remove) any characters in a log message which cannot be converted to the
154
+ output logfile's encoding.
150
155
151
156
- 0.9.14: Fix writing LF line endings on Windows when encoding is specified.
152
157
Added newline and terminator kwargs to allow customizing line ending behavior.
Original file line number Diff line number Diff line change @@ -90,6 +90,12 @@ restart your app service so that all processes are using the same settings at th
90
90
91
91
## Change Log ##
92
92
93
+ - 0.9.15: Fix bug from last version on Python 2. (Issue #21 ) Thanks @condontrevor
94
+ Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
95
+ a log message to the output stream's encoding. I.e., by default it will filter
96
+ out (remove) any characters in a log message which cannot be converted to the
97
+ output logfile's encoding.
98
+
93
99
- 0.9.14: Fix writing LF line endings on Windows when encoding is specified.
94
100
Added newline and terminator kwargs to allow customizing line ending behavior.
95
101
Thanks to @vashek
Original file line number Diff line number Diff line change 142
142
143
143
Change Log
144
144
==========
145
+ - 0.9.15: Fix bug from last version on Python 2. (Issue #21) Thanks @condontrevor
146
+ Also, on Python 2 and 3, apply unicode_error_policy (default: ignore) to convert
147
+ a log message to the output stream's encoding. I.e., by default it will filter
148
+ out (remove) any characters in a log message which cannot be converted to the
149
+ output logfile's encoding.
145
150
146
151
- 0.9.14: Fix writing LF line endings on Windows when encoding is specified.
147
152
Added newline and terminator kwargs to allow customizing line ending behavior.
289
294
290
295
from setuptools import setup
291
296
292
- VERSION = "0.9.14 "
297
+ VERSION = "0.9.15 "
293
298
classifiers = """\
294
299
Development Status :: 4 - Beta
295
300
Topic :: System :: Logging
Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ def randbits(nb):
94
94
except ImportError :
95
95
gzip = None
96
96
97
- __version__ = '0.9.14 '
97
+ __version__ = '0.9.15 '
98
98
__author__ = "Preston Landers <[email protected] >"
99
99
# __author__ = "Lowell Alleman"
100
100
__all__ = [
You can’t perform that action at this time.
0 commit comments