Skip to content

Commit

Permalink
Improved log string.
Browse files Browse the repository at this point in the history
  • Loading branch information
s5uishida committed Aug 19, 2019
1 parent d47dae7 commit 3bb0b00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: java driver for ppd42ns - dust sensor module
Bundle-SymbolicName: ppd42ns-driver
Bundle-Version: 0.1.0
Bundle-Version: 0.1.1
Automatic-Module-Name: ppd42ns-driver
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: com.pi4j.io.gpio;version="1.2.0",
com.pi4j.io.gpio.event;version="1.2.0",
org.slf4j;version="[1.7.25,1.8.0)"
Export-Package: io.github.s5uishida.iot.device.ppd42ns.driver;version="0.1.0"
Export-Package: io.github.s5uishida.iot.device.ppd42ns.driver;version="0.1.1"
Bundle-Vendor: Shigeru Ishida (s5uishida)
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ synchronized public void open() {
diPin.setShutdownOptions(true);
ppd42nsListener = new PPD42NSGpioPinListenerDigital(this, queue);
diPin.addListener(ppd42nsListener);
LOG.info(logPrefix + "opened SPI SLCK.");
LOG.info(logPrefix + "opened");
}
} finally {
LOG.debug(logPrefix + "after - useCount:{}", useCount.get());
Expand All @@ -81,7 +81,7 @@ synchronized public void close() {
diPin.removeAllListeners();
gpio.unprovisionPin(diPin);
gpio.shutdown();
LOG.info(logPrefix + "closed SPI SLCK.");
LOG.info(logPrefix + "closed");
}
} finally {
LOG.debug(logPrefix + "after - useCount:{}", useCount.get());
Expand Down

0 comments on commit 3bb0b00

Please sign in to comment.