(self, line)
| 313 | ) |
| 314 | |
| 315 | def preprocess(self, line): |
| 316 | for currentRex in self.rex: |
| 317 | line = re.sub(currentRex, "<*>", line) |
| 318 | return line |
| 319 | |
| 320 | def log_to_dataframe(self, log_file, regex, headers, logformat): |
| 321 | """Function to transform log file to dataframe""" |