summaryrefslogtreecommitdiff
path: root/opencl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-11-27 15:41:49 +0200
committerTor Lillqvist <tml@collabora.com>2014-11-27 15:41:49 +0200
commit79d6813609ffe05e4d8b678bc608fbfd1482aeb9 (patch)
treec9af2ac6c4c239947c39b14237a012dd976fe953 /opencl
parentafcb67bd0645a0ddd2ae024d13becc118b8c40b0 (diff)
Use correct SAL_INFO log area
Change-Id: I47e6dcf18fe141b8dba33a8c3cd83f80950045cd
Diffstat (limited to 'opencl')
-rw-r--r--opencl/source/openclconfig.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/opencl/source/openclconfig.cxx b/opencl/source/openclconfig.cxx
index aa7a07ae3e97..dd50649e5a41 100644
--- a/opencl/source/openclconfig.cxx
+++ b/opencl/source/openclconfig.cxx
@@ -159,12 +159,12 @@ bool match(const OpenCLConfig::ImplMatcherSet& rList, const OpenCLPlatformInfo&
{
for (auto i = rList.cbegin(); i != rList.end(); ++i)
{
- SAL_INFO("sc.opencl", "Looking for match for platform=" << rPlatform << ", device=" << rDevice <<
+ SAL_INFO("opencl", "Looking for match for platform=" << rPlatform << ", device=" << rDevice <<
" in " << sKindOfList << " entry=" << *i);
if (match(*i, rPlatform, rDevice))
{
- SAL_INFO("sc.opencl", "Match!");
+ SAL_INFO("opencl", "Match!");
return true;
}
}