LogoRobo.js
Framework

TimestampFormat

Type Alias: TimestampFormat

type TimestampFormat = "iso" | "unix" | "short" | "long" | false;

Timestamp format for log entries.

  • 'iso': ISO 8601 format (2025-01-15T10:30:00.123Z)
  • 'unix': Unix timestamp in milliseconds (1736937000123)
  • 'short': Time only (10:30:00.123)
  • 'long': Date and time with space (2025-01-15 10:30:00.123)
  • false: No timestamp

On this page