diff options
Diffstat (limited to 'parameter/AutoLog.cpp')
-rw-r--r-- | parameter/AutoLog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parameter/AutoLog.cpp b/parameter/AutoLog.cpp index eb59b01..5035a8f 100644 --- a/parameter/AutoLog.cpp +++ b/parameter/AutoLog.cpp @@ -29,7 +29,7 @@ CAutoLog::CAutoLog(const CElement* pElement, const string& strContext, bool bLog { if (_bLogOn) { // Log - _pElement->doLog(_strContext + " {"); + _pElement->doLog(false, _strContext + " {"); // Nest _pElement->nestLog(); } @@ -41,6 +41,6 @@ CAutoLog::~CAutoLog() // Unnest _pElement->unnestLog(); // Log - _pElement->doLog( "} " + _strContext); + _pElement->doLog(false, "} " + _strContext); } } |