You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rm...@apache.org on 2021/08/21 02:33:52 UTC

[logging-log4cxx] 01/02: More logstrings

This is an automated email from the ASF dual-hosted git repository.

rmiddleton pushed a commit to branch LOGCXX-431
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git

commit 60184d702279dd279cbd30e2e1596634cc47c979
Author: Robert Middleton <ro...@rm5248.com>
AuthorDate: Fri Aug 20 22:26:38 2021 -0400

    More logstrings
---
 src/main/cpp/threadutility.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/cpp/threadutility.cpp b/src/main/cpp/threadutility.cpp
index bdd301b..c7990d9 100644
--- a/src/main/cpp/threadutility.cpp
+++ b/src/main/cpp/threadutility.cpp
@@ -46,7 +46,7 @@ void ThreadUtility::preThreadBlockSignals(){
 	sigset_t set;
 	sigfillset(&set);
 	if( pthread_sigmask(SIG_SETMASK, &set, nullptr) < 0 ){
-		LOGLOG_ERROR( "Unable to set thread sigmask" );
+		LOGLOG_ERROR( LOG4CXX_STR("Unable to set thread sigmask") );
 	}
 #endif /* LOG4CXX_HAS_PTHREAD_SIGMASK */
 }
@@ -60,12 +60,12 @@ void ThreadUtility::threadStartedNameThread(LogString threadName,
 							 std::thread::native_handle_type native_handle){
 #if LOG4CXX_HAS_PTHREAD_SETNAME
 	if( pthread_setname_np( static_cast<pthread_t>( native_handle ), threadName.c_str() ) < 0 ){
-		LOGLOG_ERROR( "unable to set thread name" );
+		LOGLOG_ERROR( LOG4CXX_STR("unable to set thread name") );
 	}
 #elif LOG4CXX_HAS_SETTHREADDESCRIPTION
 	HRESULT hr = SetThreadDescription(static_cast<HANDLE>(native_handle), threadName.c_str());
 	if(FAILED(hr)){
-		LOGLOG_ERROR( "unable to set thread name" );
+		LOGLOG_ERROR( LOG4CXX_STR("unable to set thread name") );
 	}
 #endif
 }
@@ -77,7 +77,7 @@ void ThreadUtility::postThreadUnblockSignals(){
 	sigset_t set;
 	sigemptyset(&set);
 	if( pthread_sigmask(SIG_SETMASK, &set, nullptr) < 0 ){
-		LOGLOG_ERROR( "Unable to set thread sigmask" );
+		LOGLOG_ERROR( LOG4CXX_STR("Unable to set thread sigmask") );
 	}
 #endif /* LOG4CXX_HAS_PTHREAD_SIGMASK */
 }