vmray: remove bad print statements

This commit is contained in:
Mike Hunhoff
2024-07-29 11:39:03 -06:00
parent 3043fd6ac8
commit 51b853de59

View File

@@ -659,7 +659,6 @@ def get_file_extractors_from_cli(args, input_format: str) -> List[FeatureExtract
log_unsupported_drakvuf_report_error(str(e))
elif input_format == FORMAT_VMRAY:
log_unsupported_vmray_report_error(str(e))
print(e)
else:
log_unsupported_format_error()
raise ShouldExitError(E_INVALID_FILE_TYPE) from e
@@ -779,7 +778,6 @@ def get_extractor_from_cli(args, input_format: str, backend: str) -> FeatureExtr
log_unsupported_drakvuf_report_error(str(e))
elif input_format == FORMAT_VMRAY:
log_unsupported_vmray_report_error(str(e))
print(e)
else:
log_unsupported_format_error()
raise ShouldExitError(E_INVALID_FILE_TYPE) from e