[Libreoffice-commits] core.git: vcl/source

Tor Lillqvist tml at collabora.com
Sun Oct 18 01:00:08 PDT 2015


 vcl/source/opengl/OpenGLHelper.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 0663f30bae396433497854988f4e6d0a5bf86932
Author: Tor Lillqvist <tml at collabora.com>
Date:   Sun Oct 18 10:59:19 2015 +0300

    Success is no reason to be scared
    
    Change-Id: If7ad24bf1f7442e86d424188bd78f332b1a351ff

diff --git a/vcl/source/opengl/OpenGLHelper.cxx b/vcl/source/opengl/OpenGLHelper.cxx
index 2a0f72a..ae42776 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");
     }
 }
 


More information about the Libreoffice-commits mailing list