Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Feb 10, 2012
1 parent 2c7e667 commit 0ec4894
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions History.md
@@ -1,4 +1,9 @@

1.3.0 / 2012-02-10
==================

* Changed to use local time zone instead of GMT [thakkar-rushikesh]

1.2.0 / 2011-05-23
==================

Expand Down
2 changes: 1 addition & 1 deletion lib/log.js
Expand Up @@ -149,7 +149,7 @@ Log.prototype = {
return args[i++];
});
this.stream.write(
'[' + new Date() + ']'
'[' + new Date + ']'
+ ' ' + levelStr
+ ' ' + msg
+ '\n'
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "log",
"description": "Tiny logger with streaming reader",
"version": "1.2.0",
"version": "1.3.0",
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"keywords": ["log", "logger"],
"main": "./lib/log.js",
Expand Down

0 comments on commit 0ec4894

Please sign in to comment.