diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-03-06 14:56:09 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-03-06 14:56:09 +0100 |
commit | 91745bdbfac1f478f230f6128240298d64d15d0d (patch) | |
tree | e051ec9a21c9039f305e4f789e01ff0fab3b91b0 /desktop/source | |
parent | 20ce75e2947b3eac676ff8326fa40c4861fc1ba3 (diff) |
Simplify SAL_INFO message composition
Change-Id: I665c77f984cebba8803ff81a78dd31578bdeef51
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/lib/init.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 9cb7f3becf20..5ba852efccb4 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -1292,7 +1292,7 @@ static bool lo_runMacro( LibreOfficeKit* pThis, const char *pURL) aErr.Value >>= nErrCode; pLib->maLastExceptionMsg = "An error occurred running macro (error code: " + OUString::number( nErrCode ) + ")"; - SAL_INFO("lok", "Macro execution terminated with error (error code: " + OUString::number( nErrCode ) + ")"); + SAL_INFO("lok", "Macro execution terminated with error code " << nErrCode); return false; } |