Skip to content

Commit

Permalink
console.log -> console.error
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan authored and vjeux committed Dec 30, 2013
1 parent 838589c commit 880951f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ var CommentBox = React.createClass({
this.setState({data: data});
}.bind(this),
error: function(xhr, status, err) {
console.log("comments.json", status, err.toString());
console.error("comments.json", status, err.toString());
}.bind(this)
});
return {data: []};
Expand Down

0 comments on commit 880951f

Please sign in to comment.