summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-01-19 14:28:30 +0000
committerCaolán McNamara <caolanm@redhat.com>2017-01-19 15:13:37 +0000
commitef306355851e9b6591e9f3fb9476d5bbd548d9ba (patch)
tree71622ca7780ed151f7c4eb911a0fc1c0b7ad4435 /cppuhelper
parent5a5cd0ac64c9a56f6d680a2aec2821c8d888f688 (diff)
these used to OSL_TRACE, quiten them to SAL_INFO
Change-Id: Iec429b986a55a847baceb2e84752a380c6db831a
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/tdmgr.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/cppuhelper/source/tdmgr.cxx b/cppuhelper/source/tdmgr.cxx
index d78260cb4a2c..38c53759b3ed 100644
--- a/cppuhelper/source/tdmgr.cxx
+++ b/cppuhelper/source/tdmgr.cxx
@@ -589,15 +589,13 @@ static void SAL_CALL typelib_callback(
*ppRet = createCTD( access, xTD );
}
}
- catch (container::NoSuchElementException & exc)
+ catch (const container::NoSuchElementException & exc)
{
- (void) exc; // avoid warning about unused variable
- SAL_WARN("cppuhelper", "typelibrary type not available: " << exc.Message );
+ SAL_INFO("cppuhelper", "typelibrary type not available: " << exc.Message );
}
- catch (Exception & exc)
+ catch (const Exception & exc)
{
- (void) exc; // avoid warning about unused variable
- SAL_WARN("cppuhelper", exc.Message );
+ SAL_INFO("cppuhelper", exc.Message );
}
}
}