Debug pane should use local timezone

This commit is contained in:
Nick O'Leary 2014-07-01 23:14:44 +01:00
parent 045f658ef9
commit c18119f26e
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@
function getTimestamp() {
var d = new Date();
return d.toUTCString().substring(5,25)+"."+d.getMilliseconds();
return d.toLocaleString();
}
var sbc = document.getElementById("debug-content");