Skip to content

Instantly share code, notes, and snippets.

@zacharyc
Created April 6, 2012 00:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zacharyc/2315422 to your computer and use it in GitHub Desktop.
Save zacharyc/2315422 to your computer and use it in GitHub Desktop.
Local Storage Logger
//console.log("creating localStorageLogger;");
function logLocalStorage(message) {
var currentStack = localStorage.getItem("log");
localStorage.setItem("log", currentStack + ";\n " + new Date() + message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment