diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-06 00:13:18 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-06 00:13:18 +0000 |
commit | 50908a11b5d244099263fae4c867d16fc69d5594 (patch) | |
tree | d6cc80d3a59d96d37a6a604943ca0a4262302a1c /ui/gl | |
parent | c602b654d5dd295cbdd591cc9fa07779a6371491 (diff) | |
download | chromium_src-50908a11b5d244099263fae4c867d16fc69d5594.zip chromium_src-50908a11b5d244099263fae4c867d16fc69d5594.tar.gz chromium_src-50908a11b5d244099263fae4c867d16fc69d5594.tar.bz2 |
Don't spam the console with warnings.
BUG=none
Review URL: https://chromiumcodereview.appspot.com/11361097
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@166084 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gl')
-rw-r--r-- | ui/gl/gl_context_osmesa.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gl/gl_context_osmesa.cc b/ui/gl/gl_context_osmesa.cc index 1787ef9..445df87 100644 --- a/ui/gl/gl_context_osmesa.cc +++ b/ui/gl/gl_context_osmesa.cc @@ -120,7 +120,7 @@ void* GLContextOSMesa::GetHandle() { void GLContextOSMesa::SetSwapInterval(int interval) { DCHECK(IsCurrent(NULL)); - LOG(WARNING) << "GLContextOSMesa::SetSwapInterval is ignored."; + DLOG(INFO) << "GLContextOSMesa::SetSwapInterval is ignored."; } GLContextOSMesa::~GLContextOSMesa() { |