File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change
1
+ Version 2.0.2
2
+ -----------------------------------------------------------
3
+ * Fix Infinite sleep loop in RTU Framer
4
+ * Add pygments as extra requirement for repl
5
+ * More verbose logs for repl
6
+
1
7
Version 2.0.1
2
8
-----------------------------------------------------------
3
9
* Fix unicode decoder error with BinaryPayloadDecoder in some platforms
Original file line number Diff line number Diff line change @@ -211,7 +211,8 @@ def main(ctx, verbose):
211
211
if verbose :
212
212
global log
213
213
import logging
214
- format = '%(asctime)-15s %(message)s'
214
+ format = ('%(asctime)-15s %(threadName)-15s '
215
+ '%(levelname)-8s %(module)-15s:%(lineno)-8s %(message)s' )
215
216
log = logging .getLogger ('pymodbus' )
216
217
logging .basicConfig (format = format )
217
218
log .setLevel (logging .DEBUG )
You can’t perform that action at this time.
0 commit comments