Because winston reads the file from the first line to the last. if you offset with the start property what will happen is it will read the first few lines until it reaches the start point and then it will insert records into the array.
but since the array only cares about the last ones it will always end up with the same result. if the option.start is close to the log length then you will only end up with a subset of the first result. and therefore cannot paginate
Because winston reads the file from the first line to the last. if you offset with the start property what will happen is it will read the first few lines until it reaches the start point and then it will insert records into the array.
but since the array only cares about the last ones it will always end up with the same result. if the option.start is close to the log length then you will only end up with a subset of the first result. and therefore cannot paginate
Here are my queries