> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/nemo/relay/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemo/relay/_mcp/server.

# Struct File LogSink Config

> File sink settings for non-blocking operational logging.

Generated from `cargo doc --no-deps -p nemo-relay -p nemo-relay-adaptive -p nemo-relay-pii-redaction -p nemo-relay-ffi -p nemo-relay-types -p nemo-relay-plugin -p nemo-relay-worker-proto -p nemo-relay-worker`.

<pre />

File sink settings for non-blocking operational logging.

Relative `path` values are resolved against the process current working directory at sink open time. Absolute paths are used as-is. `~` and env expansion are not applied.

File sinks write through an async queue so logging cannot stall the process on disk I/O. `queue_capacity` is an optional advanced override; an omitted value uses [`DEFAULT_FILE_SINK_QUEUE_ENTRIES`](/reference/api/rust-library-reference/nemo-relay/logging/constant-default-file-sink-queue-entries).

## Fields

### `path: PathBuf`

Destination file path.

### `level: LogLevel`

Minimum severity for this file sink.

### `format: LogFormat`

Output encoding for this file sink.

### `queue_capacity: usize`

Maximum pending asynchronous queue entries for this file sink. Must be greater than 0 and at most [`MAX_FILE_SINK_QUEUE_ENTRIES`](/reference/api/rust-library-reference/nemo-relay/logging/constant-max-file-sink-queue-entries).

## Trait Implementations

### `impl Clone for FileLogSinkConfig`

<pre />

#### `clone`

<pre />

#### `clone_from`

<pre />

### `impl Debug for FileLogSinkConfig`

<pre />

#### `fmt`

<pre />

### `impl Default for FileLogSinkConfig`

<pre />

#### `default`

<pre />

### `impl PartialEq for FileLogSinkConfig`

<pre />

#### `eq`

<pre />

#### `ne`

<pre />

### `impl Eq for FileLogSinkConfig`

<pre />

### `impl StructuralPartialEq for FileLogSinkConfig`

<pre />