Skip to content

Interface: LogMethodWithAnyTypedMergingObject()

An interface represending one of the possible signatures of a logging method in the LogMethod union

ts
LogMethodWithAnyTypedMergingObject(
   mergingObject: any,
   message: string, ...
   values: any[]): EventCallbackResult;

An interface represending one of the possible signatures of a logging method in the LogMethod union

Parameters

ParameterTypeDescription
mergingObjectany-
messagestringThe message to log. Pino Docs
...valuesany[]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

Returns

EventCallbackResult