summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2015-10-18 10:59:19 +0300
committerTor Lillqvist <tml@collabora.com>2015-10-18 10:59:28 +0300
commit0663f30bae396433497854988f4e6d0a5bf86932 (patch)
tree61cea1bbd8a91661d6703f3d2d7c5d1cc2c4ba8e
parent6c6463124d9a7fcf1abe3f02067eb5205d7fcd3c (diff)
Success is no reason to be scared
Change-Id: If7ad24bf1f7442e86d424188bd78f332b1a351ff
-rw-r--r--vcl/source/opengl/OpenGLHelper.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/opengl/OpenGLHelper.cxx b/vcl/source/opengl/OpenGLHelper.cxx
index 2a0f72ab7ec3..ae42776b2ac3 100644
--- a/vcl/source/opengl/OpenGLHelper.cxx
+++ b/vcl/source/opengl/OpenGLHelper.cxx
@@ -262,7 +262,7 @@ namespace
// to the already saved binary, since they have the same hash value
if( eStatus == osl::FileBase::E_EXIST )
{
- SAL_WARN( "vcl.opengl",
+ SAL_INFO( "vcl.opengl",
"No binary program saved. A file with the same hash already exists: '" << rBinaryFileName << "'" );
return true;
}
@@ -289,7 +289,7 @@ namespace
sal_uInt64 nBytesRead = 0;
aFile.read( rBinary.data(), nSize, nBytesRead );
assert( nSize == nBytesRead );
- SAL_WARN("vcl.opengl", "Loading file: '" << rBinaryFileName << "': success" );
+ SAL_INFO("vcl.opengl", "Loading file: '" << rBinaryFileName << "': success" );
return true;
}
else
@@ -363,7 +363,7 @@ namespace
if( !writeProgramBinary( rBinaryFileName, aBinary ) )
SAL_WARN("vcl.opengl", "Writing binary file '" << rBinaryFileName << "': FAIL");
else
- SAL_WARN("vcl.opengl", "Writing binary file '" << rBinaryFileName << "': success");
+ SAL_INFO("vcl.opengl", "Writing binary file '" << rBinaryFileName << "': success");
}
}