[3.0] Added missing newline chars to logging commands
[platform/core/uifw/dali-core.git] / dali / devel-api / threading / mutex.cpp
index fdb9cde..4e0cb30 100644 (file)
@@ -39,7 +39,7 @@ Mutex::Mutex()
 {
   if( pthread_mutex_init( &mImpl->mutex, NULL ) )
   {
-    DALI_LOG_ERROR( "Unable to initialise Mutex" );
+    DALI_LOG_ERROR( "Unable to initialise Mutex\n" );
   }
   mImpl->locked = false;
 }
@@ -48,7 +48,7 @@ Mutex::~Mutex()
 {
   if( pthread_mutex_destroy( &mImpl->mutex ) )
   {
-    DALI_LOG_ERROR( "Unable to destroy Mutex" );
+    DALI_LOG_ERROR( "Unable to destroy Mutex\n" );
   }
   // nothing else to do as there is no Lock/Unlock API
   // ScopedLock destructor will always unlock the mutex