Skip to content

Commit

Permalink
Merge pull request #10 from allenday/master
Browse files Browse the repository at this point in the history
all log messages to stderr
  • Loading branch information
adarob committed Nov 30, 2015
2 parents 7335213 + 28548b8 commit f845cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logger.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Logger {

public:
Logger()
: _info_out(&std::cout), _warn_out(&std::cerr), _severe_out(&std::cerr) {}
: _info_out(&std::cerr), _warn_out(&std::cerr), _severe_out(&std::cerr) {}

void info_out(std::ostream* out) {
boost::unique_lock<boost::mutex>(_mut);
Expand Down

0 comments on commit f845cab

Please sign in to comment.