diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-01-13 12:09:52 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-01-13 12:10:44 +0100 |
commit | 20b0c8fc3bb5bcf4ae8ba81c88aaa5726dbcf9e2 (patch) | |
tree | 91fd09cd6a69e0949df225aa21ac3d960b27c14c /sal | |
parent | b550d3b10adf3a7f8c3013c231e8251059343c5e (diff) |
sal: avoid " at:\n" at the end of SAL_DEBUG() messages
This reverts one hunk of commit c995196ff0e9f7041b03fc513d703d6e60b8c867
(Fixup SAL_DEBUG_TRACE macro., 2016-01-12).
Change-Id: Icbf611c4aaa909b8c495bed1280fad73ba876e8c
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/all/log.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/all/log.cxx b/sal/osl/all/log.cxx index 665942b27c9b..a010c333d555 100644 --- a/sal/osl/all/log.cxx +++ b/sal/osl/all/log.cxx @@ -210,7 +210,7 @@ void log( } s << message; - if (isDebug(level)) { + if (level == SAL_DETAIL_LOG_LEVEL_DEBUG_TRACE) { s << " at:\n"; s << OUString(osl_backtraceAsString(), SAL_NO_ACQUIRE); } |