Tengo un requisito específico en el que necesito poder configurar manualmente el valor de la marca de tiempo para una entrada de registro en Winston. El caso de uso se puede describir como una máquina del tiempo, por lo que necesito poder ver cómo se habrían generado los registros retrocediendo en el tiempo.
Veo que el format.timestamp(opts?: TimestampOptions) tiene opciones, pero parecen ser solo para formatear:
export interface TimestampOptions { /** * Either the format as a string accepted by the [fecha](https://github.com/taylorhakes/fecha) * module or a function that returns a formatted date. If no format is provided `new * Date().toISOString()` will be used. */ format?: string | (() => string); /** * The name of an alias for the timestamp property, that will be added to the `info` object. */ alias?: string; }¿Hay alguna manera de hacerlo sin crear un registrador personalizado?