Skip to content

Commit

Permalink
changing everything to GMT
Browse files Browse the repository at this point in the history
  • Loading branch information
MarHai committed Feb 16, 2015
1 parent 8bb6bea commit 9f8f60f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scrape.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ nRunId = nRunId.getFullYear() + '-' + nRunId.getDate() + '-' + nRunId.getDay() +
function log(_sText) {
oPage.echo(_sText);
var dTime = new Date();
_sText = dTime.toLocaleString() + ' .' + dTime.getMilliseconds() + ' ' + _sText + '\n';
_sText = dTime.toGMTString() + ' .' + dTime.getMilliseconds() + ' ' + _sText + '\n';
oFile.write(oConfig.dir.prefix + oConfig.dir.log + oConfig.uid + '.txt', _sText, 'a');
}
function overwriteConfig(_oOption) {
Expand Down

0 comments on commit 9f8f60f

Please sign in to comment.