Skip to content
Snippets Groups Projects
Commit 3533ac9c authored by eugene.livis's avatar eugene.livis
Browse files

Minimizing console output for command line use case

parent 5d0f8da7
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,8 @@ public static boolean loadSleuthkitJNI() {
if (!loaded) {
System.out.println("SleuthkitJNI: failed to load " + Lib.TSK_JNI.getLibName()); //NON-NLS
} else {
System.out.println("SleuthkitJNI: loaded " + Lib.TSK_JNI.getLibName()); //NON-NLS
// We want minimal console output for command line use case
//System.out.println("SleuthkitJNI: loaded " + Lib.TSK_JNI.getLibName()); //NON-NLS
}
return loaded;
}
......@@ -166,7 +167,8 @@ private static boolean loadNativeLibFromTskJar(Lib library) {
// copy library to temp folder and load it
try {
java.io.File tempLibFile = new java.io.File(pathToTempFile.toString()); //NON-NLS
System.out.println("Temp Folder for Libraries: " + tempLibFile.getParent()); //NON-NLS
// We want minimal console output for command line use case
//System.out.println("Temp Folder for Libraries: " + tempLibFile.getParent()); //NON-NLS
// cycle through the libraries and delete them.
// we used to copy dlls into here.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment