diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-10-30 14:28:48 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-10-30 15:18:42 +0200 |
commit | 288550ee6db7e3b3f81a027145d006f422d67876 (patch) | |
tree | a168d1c0e77428d118a8e53ead8499d23dfbca84 | |
parent | f92ab4da51647a4353038b1c56b70db3672c49cf (diff) |
Use more specific log area for the "binary file" messages
So that they can easily be avoided as they are rather uninteresting, in my
humble opinion. Did not want to drop these SAL_INFOs altogether as this after
all is not "my" code.
Change-Id: Icb92f4ca2715c3dfef522319fdb1f81b782ec6cc
-rw-r--r-- | sc/source/core/opencl/openclwrapper.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/core/opencl/openclwrapper.cxx b/sc/source/core/opencl/openclwrapper.cxx index 464d70bd0ccf..23db69e7740e 100644 --- a/sc/source/core/opencl/openclwrapper.cxx +++ b/sc/source/core/opencl/openclwrapper.cxx @@ -158,11 +158,11 @@ std::vector<boost::shared_ptr<osl::File> > OpenCLDevice::binaryGenerated( const if(pNewFile->open(osl_File_OpenFlag_Read) == osl::FileBase::E_None) { aGeneratedFiles.push_back(boost::shared_ptr<osl::File>(pNewFile)); - SAL_INFO("sc.opencl", "Opening binary file '" << fileName << "' for reading: success"); + SAL_INFO("sc.opencl.file", "Opening binary file '" << fileName << "' for reading: success"); } else { - SAL_INFO("sc.opencl", "Opening binary file '" << fileName << "' for reading: FAIL"); + SAL_INFO("sc.opencl.file", "Opening binary file '" << fileName << "' for reading: FAIL"); delete pNewFile; break; } @@ -238,9 +238,9 @@ bool OpenCLDevice::generatBinFromKernelSource( cl_program program, const char * OString fileName = createFileName(mpArryDevsID[i], clFileName); if ( !writeBinaryToFile( fileName, binaries[i], binarySizes[i] ) ) - SAL_INFO("sc.opencl", "Writing binary file '" << fileName << "': FAIL"); + SAL_INFO("sc.opencl.file", "Writing binary file '" << fileName << "': FAIL"); else - SAL_INFO("sc.opencl", "Writing binary file '" << fileName << "': success"); + SAL_INFO("sc.opencl.file", "Writing binary file '" << fileName << "': success"); } } |