Skip to content

Commit

Permalink
Fix eslint warning
Browse files Browse the repository at this point in the history
  • Loading branch information
gocreating committed Oct 26, 2016
1 parent 5655a29 commit 4f58f62
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/common/components/utils/BsForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ class BsForm extends Component {

render() {
let {
labelDimensions, // hold props to avoid passing down
fieldDimensions, // hold props to avoid passing down
/* eslint-disable */
// consume props owned by BsForm
labelDimensions, fieldDimensions,
/* eslint-enable */
children,
...rest
} = this.props;
Expand Down
3 changes: 3 additions & 0 deletions src/server/pm2Entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ pm2.connect(function() {

// Display logs in standard output
pm2.launchBus(function(err, bus) {
if (err) {
throw err;
}
console.log('[PM2] Log streaming started');

bus.on('log:out', function(packet) {
Expand Down

0 comments on commit 4f58f62

Please sign in to comment.