Skip to content

Commit 2eaf4e2

Browse files
committed
Add log message
1 parent 421a2b9 commit 2eaf4e2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/main/java/org/purejava/linux/RuntimeHelper.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ private RuntimeHelper() {}
2727
static {
2828
try {
2929
System.loadLibrary("appindicator3");
30+
LOG.debug("Native code library appindicator3 successfully loaded");
3031
isLoaded = true;
3132
} catch (UnsatisfiedLinkError e) {
3233
LOG.error("Native code library failed to load.\n", e);

src/test/java/org/purejava/linux/AppIndicatorTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class AppIndicatorTest {
1717
public void shouldHaveNoErrors() {
1818
try {
1919
System.loadLibrary("appindicator3");
20+
LOG.debug("Native code library appindicator3 successfully loaded");
2021
} catch (UnsatisfiedLinkError e) {
2122
LOG.error("Native code library failed to load.\n", e);
2223
}

0 commit comments

Comments
 (0)