| 99 | } |
| 100 | |
| 101 | void interface_options_photorec_log(const struct ph_options *options) |
| 102 | { |
| 103 | /* write new options to log file */ |
| 104 | log_info("New options :\n Paranoid : %s\n", options->paranoid?"Yes":"No"); |
| 105 | log_info(" Brute force : %s\n", ((options->paranoid)>1?"Yes":"No")); |
| 106 | log_info(" Keep corrupted files : %s\n ext2/ext3 mode : %s\n Expert mode : %s\n Low memory : %s\n", |
| 107 | options->keep_corrupted_file?"Yes":"No", |
| 108 | options->mode_ext2?"Yes":"No", |
| 109 | options->expert?"Yes":"No", |
| 110 | options->lowmem?"Yes":"No"); |
| 111 | } |
no outgoing calls
no test coverage detected