Load the logs for the file.
This method return errors in two ways:
-
with an exception when the error arise while setting up the file and the filters for loading while reading the file
-
returning
false in case of errors parsing logs read from file
The error listener passed as parameter can be null . In fact the error listener gets the strings of the logs that returned an error while parsing. If the caller is not interested in those strings but only to know if there were parsing errors then it will be enough for the caller to check the value of the returned boolean.
- Parameters:
-
| logListener | The listener of the logs read from the file |
| ioListener | The listener for the progress of loading |
| errorListener | The listener of errors parsing logs (can'be null ) |
- Returns:
false in case of errors loading logs; true otherwise
- Exceptions:
-
| ZoomException | In case of errors creating filters |
| FileNotFoundException | If the file was not found |
|