Skip to content

Commit ac47168

Browse files
authored
Change log severity (#24)
* Change default severity to INFO * Change log severity
1 parent ad92721 commit ac47168

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LABEL site.local.os.version="3.17"
88
LABEL site.local.runtime.name="Python"
99
LABEL site.local.runtime.version="3.10.9"
1010
LABEL site.local.program.name="Python Modbus TCP Server"
11-
LABEL site.local.program.version="1.1.4"
11+
LABEL site.local.program.version="1.1.5"
1212

1313
COPY --chown=root:root /src /
1414

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ Container image: [DockerHub](https://hub.docker.com/repository/docker/oitc/modbu
88

99
# Supported tags and respective `Dockerfile` links
1010

11-
* [`latest`, `1.1.4`](https://github.com/cybcon/modbus-server/blob/v1.1.4/Dockerfile)
11+
* [`latest`, `1.1.5`](https://github.com/cybcon/modbus-server/blob/v1.1.5/Dockerfile)
12+
* [`1.1.4`](https://github.com/cybcon/modbus-server/blob/v1.1.4/Dockerfile)
1213
* [`1.1.3`](https://github.com/cybcon/modbus-server/blob/v1.1.3/Dockerfile)
1314
* [`1.1.2`](https://github.com/cybcon/modbus-server/blob/v1.1.2/Dockerfile)
1415

@@ -74,7 +75,7 @@ The `/app/modbus_server.json` file comes with following content:
7475
},
7576
"logging": {
7677
"format": "%(asctime)-15s %(threadName)-15s %(levelname)-8s %(module)-15s:%(lineno)-8s %(message)s",
77-
"logLevel": "DEBUG"
78+
"logLevel": "INFO"
7879
}
7980
},
8081
"registers": {

src/app/modbus_server.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
"logging": {
1111
"format": "%(asctime)-15s %(threadName)-15s %(levelname)-8s %(module)-15s:%(lineno)-8s %(message)s",
12-
"logLevel": "DEBUG"
12+
"logLevel": "INFO"
1313
}
1414
},
1515
"registers": {

src/app/modbus_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Author: Michael Oberdorf IT-Consulting
55
Datum: 2020-03-30
66
Last modified by: Hackergarden Meetup@Codecentric
7-
Last modified at: 2023-11-07
7+
Last modified at: 2023-11-08
88
*************************************************************************** """
99
import sys
1010
import os
@@ -21,7 +21,7 @@
2121

2222
# default configuration file path
2323
config_file='/app/modbus_server.json'
24-
VERSION='1.1.4'
24+
VERSION='1.1.5'
2525
"""
2626
###############################################################################
2727
# F U N C T I O N S

0 commit comments

Comments
 (0)