Skip to content
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.

Commit

Permalink
In configuration.cc, change LOG(DEBUG) to std::cout. (#144)
Browse files Browse the repository at this point in the history
We don't want it to depend on logging.h.
  • Loading branch information
davidbtucker authored and igorpeshansky committed May 31, 2018
1 parent f93fadb commit 189e860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/configuration.cc
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ int Configuration::ParseArguments(int ac, char** av) {
}

#ifdef VERBOSE
LOG(DEBUG) << "Options:\n" << option_stream.str();
std::cout << "Options:\n" << option_stream.str() << std::endl;
#endif
ParseConfiguration(option_stream);
}
Expand Down

0 comments on commit 189e860

Please sign in to comment.