Removed LOG_GETLASTERROR and LOG_ERRNO macros.
Most code uses PLOG with the same effect.
TBR=bradchen
NOTRY=true
Review URL: https://codereview.chromium.org/281223002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271949 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/remoting/tools/breakpad_tester_win.cc b/remoting/tools/breakpad_tester_win.cc
index b87d878..846d61eb 100644
--- a/remoting/tools/breakpad_tester_win.cc
+++ b/remoting/tools/breakpad_tester_win.cc
@@ -64,7 +64,7 @@
base::win::ScopedHandle process;
process.Set(OpenProcess(desired_access, FALSE, pid));
if (!process.IsValid()) {
- LOG_GETLASTERROR(ERROR) << "Failed to open the process " << pid;
+ PLOG(ERROR) << "Failed to open the process " << pid;
return kErrorExitCode;
}
@@ -73,7 +73,7 @@
thread.Set(CreateRemoteThread(process.Get(), NULL, 0, NULL, NULL, 0,
&thread_id));
if (!thread.IsValid()) {
- LOG_GETLASTERROR(ERROR) << "Failed to create a remote thread in " << pid;
+ PLOG(ERROR) << "Failed to create a remote thread in " << pid;
return kErrorExitCode;
}