Skip to content

Instantly share code, notes, and snippets.

@hobione2k
Last active May 30, 2023 07:05
Show Gist options
  • Save hobione2k/2260308e1f1d1aedc2fc5cd68ef97b91 to your computer and use it in GitHub Desktop.
Save hobione2k/2260308e1f1d1aedc2fc5cd68ef97b91 to your computer and use it in GitHub Desktop.
ClusterScript-時刻付きログ
const pad = (n, l = 2) => {
return n.toString().padStart(l, "0");
};
const now = () => {
const d = new Date();
const time = `${pad(d.getHours())}:${pad(d.getMinutes())}:${pad(
d.getSeconds()
)}.${pad(d.getMilliseconds(), 3)}`;
return time;
};
const log = (...msg) => $.log(`${now()} ${msg.join()}`);
@hobione2k
Copy link
Author

使い方

log("にゃん");

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment