From 8e3c63b7f940016c1683df5f6b87dcaf952fa027 Mon Sep 17 00:00:00 2001 From: nealsid Date: Thu, 27 May 2010 19:37:24 +0000 Subject: Remove LOG statements from linux utilities so there's no dependency on log library A=Zhurun R=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@604 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/client/linux/sender/google_crash_report_sender.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/client/linux') 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 +#include + +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; -- cgit v1.2.1