Skip to content

Commit

Permalink
Release 0.3.4. Removed warn logs when reconnecting command connection
Browse files Browse the repository at this point in the history
  • Loading branch information
mvalla committed Jan 6, 2021
1 parent 74c3230 commit 6d4442f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Changelog

## [0.3.4-SNAPSHOT] - 2021-01-??
## [0.3.4] - 2021-01-07

### Fixed
- [zigbee] Disconnect serial port if USB dongle returns NACK (fixes #7)
- [zigbee] Disconnect serial port if USB dongle returns NACK during connection (fixes #7)
- [zigbee] Fixed (again) fixInvertedUpDownBug() not converting commands
- removed warn logs when reconnecting command connection

### Changed
- renamed dimmer levels in Lighting WHAT enum


## [0.3.3] - 2021-01-02
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.github.openwebnet4j</groupId>
<artifactId>openwebnet4j</artifactId>
<version>0.3.4-SNAPSHOT</version>
<version>0.3.4</version>
<packaging>jar</packaging>

<name>openwebnet4j OpenWebNet Java library</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ protected synchronized Response sendCommandSynchInternal(String frame) throws IO
// CMD session could have been closed by gateway, let's close this one an try with another CMD connection
cmdSk.close();
isCmdConnected = false;
logger.warn("##BUS-conn## trying NEW CMD connection...");
logger.debug("##BUS-conn## trying NEW CMD connection...");
try {
openCmdConn();
} catch (OWNException oe) {
Expand Down

0 comments on commit 6d4442f

Please sign in to comment.