summaryrefslogtreecommitdiff
path: root/vcl/source/window/errinf.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-23 11:47:53 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-23 14:38:14 +0200
commit5e028ad5dccc6ff1a9250baf2196f7a2f235e314 (patch)
tree6c6992e6fccf43b60141fb6ae32a6ad8e37cb84d /vcl/source/window/errinf.cxx
parentf905d6056606234ba53a26a3e4105ad3560d4b7b (diff)
simplify some string handling in tracing calls
Change-Id: I0fb76562429e691400a02216019c7f96791cf9b3 Reviewed-on: https://gerrit.libreoffice.org/39159 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/window/errinf.cxx')
-rw-r--r--vcl/source/window/errinf.cxx12
1 files changed, 2 insertions, 10 deletions
diff --git a/vcl/source/window/errinf.cxx b/vcl/source/window/errinf.cxx
index 7815e67bb11a..8eba53584b5c 100644
--- a/vcl/source/window/errinf.cxx
+++ b/vcl/source/window/errinf.cxx
@@ -70,11 +70,7 @@ void ErrorRegistry::RegisterDisplay(WindowDisplayErrorFunc *aDsp)
static void aDspFunc(const OUString &rErr, const OUString &rAction)
{
- OStringBuffer aErr("Action: ");
- aErr.append(OUStringToOString(rAction, RTL_TEXTENCODING_ASCII_US));
- aErr.append(" Error: ");
- aErr.append(OUStringToOString(rErr, RTL_TEXTENCODING_ASCII_US));
- OSL_FAIL(aErr.getStr());
+ SAL_WARN("vcl", "Action: " << rAction << " Error: " << rErr);
}
ErrorHandler::ErrorHandler()
@@ -156,11 +152,7 @@ DialogMask ErrorHandler::HandleError(ErrCode nErrCodeId, DialogMask nFlags)
{
if(!rData.pDsp)
{
- OStringBuffer aStr("Action: ");
- aStr.append(OUStringToOString(aAction, RTL_TEXTENCODING_ASCII_US));
- aStr.append("\nError: ");
- aStr.append(OUStringToOString(aErr, RTL_TEXTENCODING_ASCII_US));
- OSL_FAIL(aStr.getStr());
+ SAL_WARN( "vcl", "Action: " << aAction << "Error: " << aErr);
}
else
{