UNPKG

file-error-logging

Version:

Log your errors directly to the console and to a .log file

15 lines (14 loc) 660 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.formatTimestamp = void 0; // src/logger/FormatTimestamp.ts const formatTimestamp = (date) => { const hours = date.getHours().toString().padStart(2, "0"); const minutes = date.getMinutes().toString().padStart(2, "0"); const seconds = date.getSeconds().toString().padStart(2, "0"); const year = date.getFullYear(); const month = (date.getMonth() + 1).toString().padStart(2, "0"); const day = date.getDate().toString().padStart(2, "0"); return `${hours}:${minutes}:${seconds} - ${year}/${month}/${day}`; }; exports.formatTimestamp = formatTimestamp;