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-28 10:24:48 +0200
commitd7d945cef53edac1a768bb96e5f8cab1b896ad3a (patch)
tree4aa864e9b151e4306b908001e1ab13e8afc2f3dc /opencl
parent04e4fc2bdaacf1cbfee6676ba6ac921e61218f4f (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;
}
}