Skip to content

Commit 88728a7

Browse files
committed
Remove unneeded mutex lock, update change log
1 parent ef931cd commit 88728a7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ChangeLog.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,16 @@ All notable changes to this project will be documented in this file.
55
## [v1.6.0] - ??
66
### Improvements
77

8+
- if console is blocked by debugger use OutputDebugString (win)
89
- Support for Qt6
910
- Minimum required Qt version is 5.12
1011
- Add case sensitivity option in Stringmatchfilter
1112
- cmake: replace BUILD_STATIC_LOG4CXX_LIB with standard BUILD_SHARED_LIBS
1213

1314
### Fixed
15+
- TTCCLayout crash fix (#69)
1416
- Fixes for Qt6.7
15-
- Replace deprecated Qt 5.15 stuff
17+
- Replace deprecated Qt 5.15 stu
1618

1719
## [v1.5.1] - 14.02.2020
1820
### Improvements

src/log4qt/helpers/appenderattachable.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ void AppenderAttachable::removeAppender(const AppenderSharedPtr &appender)
8080

8181
void AppenderAttachable::removeAppender(const QString &name)
8282
{
83-
QWriteLocker locker(&mAppenderGuard);
8483
AppenderSharedPtr pAppender = appender(name);
8584
if (pAppender)
8685
removeAppender(pAppender);

0 commit comments

Comments
 (0)