[Pkg-javascript-commits] [node-log-driver] 42/49: fix readme, move CI stuff to devDependencies. update to 1.2.7

Bastien Roucariès rouca at moszumanska.debian.org
Thu Feb 22 12:57:09 UTC 2018


This is an automated email from the git hooks/post-receive script.

rouca pushed a commit to branch master
in repository node-log-driver.

commit 57f5883457d314440f06e1e55910ad65194a3ceb
Author: Gregg Caines <gregg at caines.ca>
Date:   Mon Feb 19 09:29:25 2018 -0800

    fix readme, move CI stuff to devDependencies. update to 1.2.7
---
 README.md    |   8 +++-----
 package.json |   2 +-
 waltz.jpg    | Bin 101219 -> 0 bytes
 3 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index e9e9743..710767d 100644
--- a/README.md
+++ b/README.md
@@ -4,9 +4,9 @@
 
 Logdriver is a node.js logger that only logs to stdout.
 
-####You're going to want to log the output of stdout and stderr anyway, so you might as well put all your logging through stdout.  Logging libraries that don't write to stdout or stderr are missing absolutely critical output like the stack trace if/when your app dies.  
+#### You're going to want to log the output of stdout and stderr anyway, so you might as well put all your logging through stdout.  Logging libraries that don't write to stdout or stderr are missing absolutely critical output like the stack trace if/when your app dies.  
 
-##There are some other nice advantages:
+## There are some other nice advantages:
 * When working on your app locally, logs just show up in stdout just like if you'd used console.log().  That's a heck of a lot simpler than tailing a log file.
 * Logging transports can be externalized from your app entirely, and completely decoupled.  This means if you want to log to irc, you write an irc client script that reads from stdin, and you just pipe your app's output to that script.
 
@@ -26,7 +26,7 @@ NB: If you're logging to a file, [Logrotate](http://linuxcommand.org/man_pages/l
 node yourapp.js 2>&1 | logger
 ```
 
-##Usage:
+## Usage:
 Getting the default logger:
 ```javascript
 var logger = require('log-driver').logger;
@@ -85,8 +85,6 @@ var logger = require('log-driver')({
 });
 ```
 
-![Log Driver](https://raw.github.com/cainus/logdriver/master/waltz.jpg)
-
 [logdriver-logo]: https://raw.github.com/cainus/logdriver/master/logo.png
 
 [travis-image]: https://travis-ci.org/cainus/logdriver.png?branch=master
diff --git a/package.json b/package.json
index c613ad4..d20ed7f 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,7 @@
     "logger",
     "log"
   ],
-  "version": "1.2.6",
+  "version": "1.2.7",
   "bugs": {
     "url": "https://github.com/cainus/logdriver/issues"
   },
diff --git a/waltz.jpg b/waltz.jpg
deleted file mode 100644
index 7f9e181..0000000
Binary files a/waltz.jpg and /dev/null differ

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-log-driver.git



More information about the Pkg-javascript-commits mailing list