Skip to content

Commit 3a59aac

Browse files
committed
Avoid excessive pymodbus logging
1 parent d0fd2b1 commit 3a59aac

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ VENV = $(VENV_DIR)/$(VENV_NAME)
6969
VENV_OPTS =
7070

7171
# To see all pytest output, uncomment --capture=no
72-
PYTESTOPTS=-v --capture=no --log-cli-level=25 # INFO 25 == NORMAL 23 == DETAIL
72+
PYTESTOPTS=-v --capture=no --log-cli-level=WARNING # INFO 25 == NORMAL 23 == DETAIL
7373

7474
PY_TEST=TZ=$(TZ) $(PY) -m pytest $(PYTESTOPTS)
7575
PY2TEST=TZ=$(TZ) $(PY2) -m pytest $(PYTESTOPTS)

requirements-modbus.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
minimalmodbus >=2.1, <3
2-
pymodbus ==3.8.0
2+
pymodbus ==3.8.1

serial_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def test_pymodbus_rs485_sync():
156156
from .remote.pymodbus_fixes import modbus_server_rtu
157157
#from pymodbus.server import ModbusSerialServer as modbus_server_rtu
158158

159-
serial_args = dict(
159+
serial_args = dict(
160160
timeout=PORT_TIMEOUT,
161161
# retries=3,
162162
baudrate = PORT_BAUDRATE,

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = ( 5, 2, 3 )
1+
__version_info__ = ( 5, 2, 4 )
22
__version__ = '.'.join( map( str, __version_info__ ))

0 commit comments

Comments
 (0)