on Aug 22, 2024 i took...

JavaScript debug log with timestamp

Bind to console

const _logger = console.debug.bind(console)
console.debug = function (...data: unknown[]) {
	_logger.call(this, `[${new Date().toISOString()}]`, ...data)
}

Or using new method

const log = (...args) => console.debug(`[${new Date().toISOString()}]`, ...args);

Usage

console.debug('User connected to socket')
// [2024-08-22T07:42:44.488Z] User connected to socket
// [2024-08-22T07:42:44.905Z] New message