Skip to main content
This release is a pre-release — the latest non-prerelease version of @logtape/file is 0.9.0. Jump to this version

@logtape/file@0.10.0-dev.142+67a22347
Built and signed on GitHub Actions

File sink and rotating file sink for LogTape

This package works with Node.js, Deno, Bun
This package works with Node.js
This package works with Deno
This package works with Bun
JSR Score
100%
Published
5 days ago (0.10.0-dev.142+67a22347)
function getRotatingFileSink
getRotatingFileSink(): 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.

Parameters

path: string

A path to the file to write to.

optional
options: RotatingFileSinkOptions

The options for the sink and the file driver.

Return Type

Sink & Disposable

A sink that writes to the file. The sink is also a disposable object that closes the file when disposed.

Add Package

deno add jsr:@logtape/file

Import symbol

import { getRotatingFileSink } from "@logtape/file";

---- OR ----

Import directly with a jsr specifier

import { getRotatingFileSink } from "jsr:@logtape/file";

Add Package

npx jsr add @logtape/file

Import symbol

import { getRotatingFileSink } from "@logtape/file";

Add Package

yarn dlx jsr add @logtape/file

Import symbol

import { getRotatingFileSink } from "@logtape/file";

Add Package

pnpm dlx jsr add @logtape/file

Import symbol

import { getRotatingFileSink } from "@logtape/file";

Add Package

bunx jsr add @logtape/file

Import symbol

import { getRotatingFileSink } from "@logtape/file";