diff options
Diffstat (limited to 'src/client/linux/sender')
-rw-r--r-- | src/client/linux/sender/google_crash_report_sender.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/linux/sender/google_crash_report_sender.cc b/src/client/linux/sender/google_crash_report_sender.cc index da9661da..c1641b4f 100644 --- a/src/client/linux/sender/google_crash_report_sender.cc +++ b/src/client/linux/sender/google_crash_report_sender.cc @@ -28,9 +28,11 @@ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "common/linux/google_crashdump_uploader.h" -#include "third_party/linux/include/glog/logging.h" #include "third_party/linux/include/gflags/gflags.h" #include <string> +#include <iostream> + +using std::string; DEFINE_string(crash_server, "http://clients2.google.com/cr", "The crash server to upload minidumps to."); @@ -75,7 +77,7 @@ bool CheckForRequiredFlagsOrDie() { } if (!error_text.empty()) { - LOG(ERROR) << error_text; + std::cout << error_text; return false; } return true; |