commenting out exceptions output from handling

This commit is contained in:
Tim Shelton 2021-10-26 18:25:23 +00:00
parent 8f22d418f3
commit 9b6be31c8d

View File

@ -368,7 +368,7 @@ def main():
sys.exit(error)
except (NotImplementedError, TypeError) as e:
print("An unsupported feature is required for this Sigma rule (%s): " % (sigmafile) + str(e), file=sys.stderr)
traceback.print_exc()
# traceback.print_exc()
logger.debug("* Convertion Sigma input %s FAILURE" % (sigmafile))
success = False
if not cmdargs.ignore_backend_errors: