Skip to content

Commit

Permalink
fix missing method toLocalString() to toString()
Browse files Browse the repository at this point in the history
  • Loading branch information
TAGOMORI Satoshi committed Apr 1, 2011
1 parent bb9c09b commit 8db9f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/scribe_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var str_times = function(str,times) {

var push_lines = function() {
var num = Math.floor(Math.random() * 100);
var now = '[' + (new Date()).toLocalString() + ']';
var now = '[' + (new Date()).toString() + ']';
var logheader = '192.168.0.1 - - ' + now + ' ';
var lines = [];
for (var i = 0; i < num; i++) {
Expand Down

0 comments on commit 8db9f7e

Please sign in to comment.