NativeLoader: Ausgaben korrigiert

master
Harald Wolff 2016-09-06 11:59:46 +02:00
parent 0d3ef91654
commit 9ba896427d
1 changed files with 4 additions and 4 deletions

View File

@ -51,7 +51,7 @@ public class NativeLoader {
try
{
System.loadLibrary(libName);
System.err.println(String.format("NativeLoader.loadLibrary(): System.loadLibrary('%s') erfolgreich",libName));
System.out.println(String.format("NativeLoader.loadLibrary(): System.loadLibrary('%s') erfolgreich",libName));
return;
} catch (UnsatisfiedLinkError e)
{
@ -62,7 +62,7 @@ public class NativeLoader {
try
{
System.load(libFileName);
System.err.println(String.format("NativeLoader.loadLibrary(): System.load('%s') erfolgreich",libFileName));
System.out.println(String.format("NativeLoader.loadLibrary(): System.load('%s') erfolgreich",libFileName));
return;
} catch (UnsatisfiedLinkError e)
{
@ -73,7 +73,7 @@ public class NativeLoader {
try
{
System.load(nativeResourceName);
System.err.println(String.format("NativeLoader.loadLibrary(): System.load('%s') erfolgreich",nativeResourceName));
System.out.println(String.format("NativeLoader.loadLibrary(): System.load('%s') erfolgreich",nativeResourceName));
return;
} catch (UnsatisfiedLinkError e)
{
@ -91,7 +91,7 @@ public class NativeLoader {
try {
Ressource.extract(nativeResourceName, tempLibFile.getAbsolutePath());
System.load(tempLibFile.getAbsolutePath());
System.err.println(String.format("NativeLoader.loadLibrary(): System.load('%s') erfolgreich",tempLibFile.getAbsolutePath()));
System.out.println(String.format("NativeLoader.loadLibrary(): System.load('%s') erfolgreich",tempLibFile.getAbsolutePath()));
return;
} catch (UnsatisfiedLinkError e)
{