Skip to content

Commit

Permalink
Remove extraneous logging, update version info for version 3.3.0.02
Browse files Browse the repository at this point in the history
  • Loading branch information
frejos committed Dec 31, 2022
1 parent f594d40 commit db234a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<artifactId>org.openhab.binding.wizlighting</artifactId>

<!-- Version appended to openhab-addons version -->
<version>3.3.0.01</version>
<version>3.3.0.02</version>

<name>openHAB Add-ons :: Bundles :: WiZ Lighting Binding</name>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class WizLightingBindingConstants {
* The binding id.
*/
public static final String BINDING_ID = "wizlighting";
public static final String CURRENT_BINDING_VERSION = "v0.03.03";
public static final String CURRENT_BINDING_VERSION = "v3.3.0.02";

/**
* List of all Thing Type UIDs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ private String getMyIpAddress() {
logger.warn("Network interface did not return an IP address!");
return "OHIPAddress";
}
logger.info("IP of OpenHab device is {}.", myIpAddress);
logger.trace("IP of OpenHab device is {}.", myIpAddress);
return myIpAddress;
}

Expand All @@ -223,7 +223,7 @@ private String getMyMacAddress() {
logger.warn("MAC Address of OpenHab device is invalid.");
return "OHMACAddress";
}
logger.info("MAC Address of OpenHab device is {}.", myMacAddress);
logger.trace("MAC Address of OpenHab device is {}.", myMacAddress);
return myMacAddress;
}

Expand Down

0 comments on commit db234a2

Please sign in to comment.