Skip to content

Commit 26d0b76

Browse files
author
M. Peter
committed
Removed debugging output
1 parent 0b5483f commit 26d0b76

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@ The writer is connected to `nsqd`
530530
## Release History
531531
|Version|Date|Description|
532532
|:--:|:--:|:--|
533+
|0.1.1|2016-07-19|Removed debugging output|
533534
|0.1.0|2016-07-15|Updated dependencies [Issue#2](https://github.com/mpneuried/nsq-logger/issues/2) and optimized activate [Issue#3](https://github.com/mpneuried/nsq-logger/issues/3)|
534535
|0.0.7|2016-01-20|Added raw nsqjs Message as last argument to the `message` event |
535536
|0.0.6|2015-12-04|Bugfix on setting an array configuration; added code banner|

_src/reader.coffee

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class NsqReader extends require( "./basic" )
4747
_initClient: =>
4848
if @client
4949
return @client
50-
@warning "start reader", @topic, @channel, @config.namespace, @config.lookupdHTTPAddresses
50+
@debug "start reader", @topic, @channel, @config.namespace, @config.lookupdHTTPAddresses
5151
@client = new nsq.Reader( @nsAdd( @topic ), @channel, @config )
5252

5353
@client.on( nsq.Reader.NSQD_CLOSED, @onDisconnect )
@@ -65,7 +65,7 @@ class NsqReader extends require( "./basic" )
6565

6666
onDiscard: ( msg )=>
6767
@emit( "exceeded", msg.json() )
68-
@warning "message exceeded", @topic, msg.json()
68+
@info "message exceeded", @topic, msg.json()
6969
return
7070

7171
onMessage: ( msg )=>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nsq-logger",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "A nsq reader factory to handle readers multiple topics based on the `nsq-topics` module",
55
"keywords": [],
66
"homepage": "https://github.com/mpneuried/nsq-logger",

0 commit comments

Comments
 (0)