Skip to content
Snippets Groups Projects
Commit ebc811a5 authored by Vojtech Moravec's avatar Vojtech Moravec
Browse files

Pass verbose flag to `inspectCacheFile`.

parent 22225a3e
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,6 @@ import azgracompress.fileformat.FileExtensions;
import org.apache.commons.cli.*;
import java.io.IOException;
import java.util.Optional;
public class DataCompressor {
public static void main(String[] args) {
......@@ -93,7 +92,8 @@ public class DataCompressor {
break;
case InspectFile: {
if (parsedCliOptions.getInputDataInfo().getFilePath().endsWith(FileExtensions.CACHE_FILE_EXT)) {
QuantizationCacheManager.inspectCacheFile(parsedCliOptions.getInputDataInfo().getFilePath());
QuantizationCacheManager.inspectCacheFile(parsedCliOptions.getInputDataInfo().getFilePath(),
parsedCliOptions.isVerbose());
} else {
ImageDecompressor decompressor = new ImageDecompressor(parsedCliOptions);
try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment