diff options
author | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 16:31:43 +0000 |
---|---|---|
committer | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 16:31:43 +0000 |
commit | 954ee6be6a31a19de9044e0eae491dfe9e5e1135 (patch) | |
tree | 8ff3ac3f6b804c8450c438299b151218ae42a67f /net | |
parent | f5059510f0e8b33c33850dbdd77d595b2bb9ad79 (diff) | |
download | chromium_src-954ee6be6a31a19de9044e0eae491dfe9e5e1135.zip chromium_src-954ee6be6a31a19de9044e0eae491dfe9e5e1135.tar.gz chromium_src-954ee6be6a31a19de9044e0eae491dfe9e5e1135.tar.bz2 |
Remove log for errors opening files. It's the client's responsibility to log if it's really an error
BUG=56681
TEST=none
Review URL: http://codereview.chromium.org/3620015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61965 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/base/file_stream_posix.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/base/file_stream_posix.cc b/net/base/file_stream_posix.cc index d338c14..45c4cfb 100644 --- a/net/base/file_stream_posix.cc +++ b/net/base/file_stream_posix.cc @@ -347,8 +347,6 @@ int FileStream::Open(const FilePath& path, int open_flags) { open_flags_ = open_flags; file_ = base::CreatePlatformFile(path, open_flags_, NULL, NULL); if (file_ == base::kInvalidPlatformFileValue) { - LOG(WARNING) << "Failed to open file: " << errno - << " (" << path.ToWStringHack() << ")"; return MapErrorCode(errno); } |