diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-02-09 17:05:22 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-02-09 17:05:22 +0100 |
commit | c697ae306cd4eaa8144ed93fc908e50d5934e249 (patch) | |
tree | be9a17514a9657a2b0f4adbc7487add3c61f2f00 /include | |
parent | 6e1efe7b6bd16e3183cdb7c87d786cb714a61959 (diff) |
Some clean up
No more need to call sal_detail_log_report from sal_detail_log, now that it is
called from SAL_DETAIL_LOG_STREAM since b3a11c8f4f307bbbb597c9c6e7e61ee93e794873
"tdf#91872: Make SAL_INFO and friends more efficient".
Change-Id: Idb6cf7a4814abe29d5ba68591f39b4279267bc9b
Diffstat (limited to 'include')
-rw-r--r-- | include/sal/log.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/sal/log.hxx b/include/sal/log.hxx index a21f80b7f8d9..c096d52a0e47 100644 --- a/include/sal/log.hxx +++ b/include/sal/log.hxx @@ -27,11 +27,11 @@ /// @cond INTERNAL extern "C" SAL_DLLPUBLIC void SAL_CALL sal_detail_log( - enum sal_detail_LogLevel level, char const * area, char const * where, + sal_detail_LogLevel level, char const * area, char const * where, char const * message, sal_uInt32 backtraceDepth); -extern "C" SAL_DLLPUBLIC int SAL_CALL sal_detail_log_report( - enum sal_detail_LogLevel level, char const * area); +extern "C" SAL_DLLPUBLIC sal_Bool SAL_CALL sal_detail_log_report( + sal_detail_LogLevel level, char const * area); namespace sal { namespace detail { |