| Index: base/file_util_win.cc
|
| ===================================================================
|
| --- base/file_util_win.cc (revision 70263)
|
| +++ base/file_util_win.cc (working copy)
|
| @@ -757,9 +757,8 @@
|
| 0,
|
| NULL));
|
| if (!file) {
|
| - LOG(WARNING) << "CreateFile failed for path " << filename.value() <<
|
| - " error code=" << GetLastError() <<
|
| - " error text=" << win_util::FormatLastWin32Error();
|
| + LOG(WARNING) << "CreateFile failed for path " << filename.value()
|
| + << " error code=" << GetLastError();
|
| return -1;
|
| }
|
|
|
| @@ -770,9 +769,8 @@
|
|
|
| if (!result) {
|
| // WriteFile failed.
|
| - LOG(WARNING) << "writing file " << filename.value() <<
|
| - " failed, error code=" << GetLastError() <<
|
| - " description=" << win_util::FormatLastWin32Error();
|
| + LOG(WARNING) << "writing file " << filename.value()
|
| + << " failed, error code=" << GetLastError();
|
| } else {
|
| // Didn't write all the bytes.
|
| LOG(WARNING) << "wrote" << written << " bytes to " <<
|
|
|