mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-30 04:47:03 +02:00
UI: Bladeburner console to use Settings.TimestampsFormat for logging (#1265)
This commit is contained in:
@@ -1,11 +0,0 @@
|
||||
/** Returns a MM/DD HH:MM timestamp for the current time */
|
||||
export function getTimestamp(): string {
|
||||
const d: Date = new Date();
|
||||
// A negative slice value takes from the end of the string rather than the beginning.
|
||||
const stringWidth = -2;
|
||||
const formattedHours: string = `0${d.getHours()}`.slice(stringWidth);
|
||||
const formattedMinutes: string = `0${d.getMinutes()}`.slice(stringWidth);
|
||||
const formattedSeconds: string = `0${d.getSeconds()}`.slice(stringWidth);
|
||||
|
||||
return `${d.getMonth() + 1}/${d.getDate()} ${formattedHours}:${formattedMinutes}:${formattedSeconds}`;
|
||||
}
|
||||
Reference in New Issue
Block a user