Interface: LogMethodWithoutMergingObject()
An interface represending one of the possible signatures of a logging method in the LogMethod union
ts
LogMethodWithoutMergingObject(message: string, ...values: any[]): EventCallbackResult;An interface represending one of the possible signatures of a logging method in the LogMethod union
Parameters
| Parameter | Type | Description |
|---|---|---|
message | string | The message to log. Pino Docs |
...values | any[] | Values which should be interpolated according to any supplied printf-style placehoders (%s, %d, %o, %O, %j) to form the final output message. Pino Docs |