From a116f897edeb9832694267bdf93af8fc8a3808c7 Mon Sep 17 00:00:00 2001 From: heck Date: Mon, 19 Apr 2021 05:35:31 +0200 Subject: [PATCH] pEpLog - pEpLogClass doesnt need to print __FILE__, we have the classname instead --- src/pEpLog.hh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pEpLog.hh b/src/pEpLog.hh index d8a15a3..b81e2a7 100644 --- a/src/pEpLog.hh +++ b/src/pEpLog.hh @@ -88,8 +88,7 @@ namespace pEp { do { \ std::stringstream msg_; \ msg_ << std::this_thread::get_id(); \ - msg_ << " - " << __FILE__; \ - msg_ << "::" << this->m4gic_logger_n4ame.get_classname(); \ + msg_ << " - " << this->m4gic_logger_n4ame.get_classname(); \ msg_ << "[" << this->m4gic_logger_n4ame.get_instancename() << "]"; \ msg_ << "::" << __FUNCTION__; \ msg_ << " - " << msg; \