File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
main/java/org/purejava/appindicator
test/java/org/purejava/appindicator Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ final class RuntimeHelper {
30
30
LOG .debug ("Native code library appindicator3 successfully loaded" );
31
31
isLoaded = true ;
32
32
} catch (UnsatisfiedLinkError e ) {
33
- LOG .error ("Native code library failed to load. \n " , e );
33
+ LOG .info ("Native code library appindicator3 failed to load" );
34
34
}
35
35
SymbolLookup loaderLookup = SymbolLookup .loaderLookup ();
36
36
SYMBOL_LOOKUP = name -> loaderLookup .find (name ).or (() -> LINKER .defaultLookup ().find (name ));
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ public void shouldHaveNoErrors() {
19
19
System .loadLibrary ("appindicator3" );
20
20
LOG .debug ("Native code library appindicator3 successfully loaded" );
21
21
} catch (UnsatisfiedLinkError e ) {
22
- LOG .error ("Native code library failed to load. \n " , e );
22
+ LOG .info ("Native code library appindicator3 failed to load" );
23
23
}
24
24
}
25
25
}
You can’t perform that action at this time.
0 commit comments