in src/main.rs [289:302]
fn print_report(
no_chat_template: usize,
parse_header_failures: usize,
sandbox_run_suspicious_files: usize,
static_scan_suspicious_files: usize,
current_total: u64,
) {
info!("{no_chat_template} out of {current_total} gguf files were missing a chat_template");
info!("failed to parse headers for {parse_header_failures} out of {current_total} gguf files");
info!("{sandbox_run_suspicious_files} out of {current_total} gguf files triggered a SecurityError in jinja2 sandbox environment");
info!("{static_scan_suspicious_files} out of {current_total} gguf files were flagged as suspicious by static scan");
info!("total # of processed files: {current_total}");
}