getRotatingFileSink(path: string,options?: RotatingFileSinkOptions,): Sink & Disposable
Get a rotating file sink.
This sink writes log records to a file, and rotates the file when it reaches
the maxSize
. The rotated files are named with the original file name
followed by a dot and a number, starting from 1. The number is incremented
for each rotation, and the maximum number of files to keep is maxFiles
.
Note that this function is unavailable in the browser.
path: string
A path to the file to write to.
options: RotatingFileSinkOptions
The options for the sink and the file driver.
Sink & Disposable
A sink that writes to the file. The sink is also a disposable object that closes the file when disposed.