Writes a page to the "removed pages" log file
| 2144 | |
| 2145 | // Writes a page to the "removed pages" log file |
| 2146 | void WriteToRemovedLog(char *name, int type) { |
| 2147 | if (removed_log_file != NULL) { |
| 2148 | CString line, type_string; |
| 2149 | GetPageTypeString(type, type_string); |
| 2150 | line.Format("%s\t%s", type_string, name); |
| 2151 | cf_WriteString(removed_log_file, line.GetBuffer(0)); |
| 2152 | } |
| 2153 | } |
| 2154 | |
| 2155 | // Closes the Filter Log Files |
| 2156 | void CloseFilterLogFiles(void) { |
no test coverage detected