Skip to content

Instantly share code, notes, and snippets.

@JasonMillward
Created February 12, 2015 02:40
Show Gist options
  • Save JasonMillward/55a72f6fd4c16355b6b6 to your computer and use it in GitHub Desktop.
Save JasonMillward/55a72f6fd4c16355b6b6 to your computer and use it in GitHub Desktop.
var debug = true;
function log(str) {
if (debug) {
var currentTime, h, m, s;
currentTime = new Date;
h = currentTime.getHours();
m = currentTime.getMinutes();
s = currentTime.getSeconds();
try {
console.log("[" + h + ":" + m + ":" + s + "] " + str);
} catch (e) {}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment