# Logger.log() method · @imqueue/async-logger

Source: https://imqueue.org/api/async-logger/latest/async-logger.logger.log/
Published: 2026-07-31
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/async-logger 3.2.0 — generated reference, not hand-written

Logs to the console and to every configured transport.

**Signature:**

```typescript
log(...args: any[]): void;
```

## Parameters


| Parameter | Type | Description |
| --- | --- | --- |
| args | any\[\] | `console.log`-style arguments; the first may be a format string with `%s`/`%d`/`%j` placeholders for the rest |


**Returns:**

void

## Remarks

Reaches transports at winston's `info` level — there is no distinct `log` level — so records from here and from [Logger.info()](https://imqueue.org/api/async-logger/latest/async-logger.logger.info/) are indistinguishable once shipped. They differ only in the console method used. Pick by the destination you care about.

