Skip to content

Commit

Permalink
cleanup debug messages, for 0.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
nullivex committed Oct 22, 2014
1 parent 794568b commit ce2fbc9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -499,6 +499,9 @@ $ DEBUG=infant* node app

## Changelog

### 0.8.4
* Cleaned up debug to no longer use `oose` labeling

### 0.8.3
* Fixes #1 where complex errors wouldnt bubble upwards for child and cluster
* Fixes bug with option handling in `Child.fork()`
Expand Down
4 changes: 2 additions & 2 deletions helpers/Child.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ Child.parent = function(module,options){
Child.child = function(title,start,stop){
var debug = infantUtil.prefixDebug(
process.pid,
require('debug')('oose:child:process')
require('debug')('infant:child:process')
)
var doStop = function(){
stop(function(err){
Expand Down Expand Up @@ -359,7 +359,7 @@ Child.child = function(title,start,stop){
Child.childOnce = function(title,exec){
var debug = infantUtil.prefixDebug(
process.pid,
require('debug')('oose:childOnce:process')
require('debug')('infant:childOnce:process')
)
debug('setting process title',title)
process.title = title
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "SnailJS <developers@snailjs.org>",
"name": "infant",
"description": "Child process, and cluster helper for Node.js",
"version": "0.8.3",
"version": "0.8.4",
"homepage": "http://snailjs.org/",
"repository": {
"type": "git",
Expand Down

0 comments on commit ce2fbc9

Please sign in to comment.