summaryrefslogtreecommitdiffstatshomepage
path: root/core/scripts/js/log.js
blob: 08349b3ae391c49c8b1ce7ef8d0462ae999ed009 (plain) (blame)
1
2
3
4
module.exports = (message) => {
  // Logging human-readable timestamp.
  console.log(`[${new Date().toTimeString().slice(0, 8)}] ${message}`);
}