Skip to content
Snippets Groups Projects
Unverified Commit b5cb66e6 authored by Jayaram Sreevalsan's avatar Jayaram Sreevalsan Committed by GitHub
Browse files

Merge pull request #2874 from eugene7646/logging_7447

CT-7447 Minimizing console output for command line use case
parents 5d0f8da7 3533ac9c
No related branches found
No related tags found
No related merge requests found
...@@ -74,7 +74,8 @@ public static boolean loadSleuthkitJNI() { ...@@ -74,7 +74,8 @@ public static boolean loadSleuthkitJNI() {
if (!loaded) { if (!loaded) {
System.out.println("SleuthkitJNI: failed to load " + Lib.TSK_JNI.getLibName()); //NON-NLS System.out.println("SleuthkitJNI: failed to load " + Lib.TSK_JNI.getLibName()); //NON-NLS
} else { } 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; return loaded;
} }
...@@ -166,7 +167,8 @@ private static boolean loadNativeLibFromTskJar(Lib library) { ...@@ -166,7 +167,8 @@ private static boolean loadNativeLibFromTskJar(Lib library) {
// copy library to temp folder and load it // copy library to temp folder and load it
try { try {
java.io.File tempLibFile = new java.io.File(pathToTempFile.toString()); //NON-NLS 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. // cycle through the libraries and delete them.
// we used to copy dlls into here. // 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