aboutsummaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authornealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-05-27 19:37:24 +0000
committernealsid <nealsid@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-05-27 19:37:24 +0000
commit8e3c63b7f940016c1683df5f6b87dcaf952fa027 (patch)
treef8522bfadc09103676ef78fbb27a7f71e0bcad17 /src/client
parentIssue 384 - UnregisterWait error handling is incorrect. Patch by Benjamin Sme... (diff)
downloadbreakpad-8e3c63b7f940016c1683df5f6b87dcaf952fa027.tar.xz
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
Diffstat (limited to 'src/client')
-rw-r--r--src/client/linux/sender/google_crash_report_sender.cc6
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;