Change session ID info log message to DEBUG2 (#7284)

* Change error to debug2 and add additional info

* Update ChangeLog

* Improved wording in ChangeLog for 1.14.7

* Apply markdown formatting to ChangeLog

* Fixed merge gone wrong

* Fixed further merge mistake

* Fixed order of new ChangeLog lines

---------

Co-authored-by: Nick Bolton <nick@symless.com>
This commit is contained in:
Serhii Hadzhilov
2023-09-26 14:49:18 +03:00
committed by GitHub
parent ed4680264a
commit 7d803071ca
2 changed files with 8 additions and 9 deletions

View File

@ -1,17 +1,15 @@
# 1.14.7
Bug fixes:
- #7265 Remove extra key press traces for Linux
Enhancements:
- #7254 Bind client to a network interface with --address
- #7262 Backward compatibility for M1 and M2 builds
- #7254 Ability to bind client to a network interface
- #7263 Change name of Flatpak uploaded to snapshots
- #7269 Reword file drag drop error to debug message
- #7274 Only build necessary binaries
- #7277 Change start errors to fatal
- #7265 Remove obtrusive Linux key press log messages
- #7269 Change file drag drop ERROR to DEBUG message
- #7274 Support env var to build unified core binary
- #7277 Change all errors that cause crash are FATAL
- #7284 Change session ID info log message to DEBUG2
CI changes:

View File

@ -70,7 +70,8 @@ MSWindowsSession::isProcessInSession(const char* name, PHANDLE process = NULL)
if (!pidToSidRet) {
// if we can not acquire session associated with a specified process,
// simply ignore it
LOG((CLOG_ERR "could not get session id for process id %i", entry.th32ProcessID));
LOG((CLOG_DEBUG2 "could not get session id for process: %i %s, code=%i",
entry.th32ProcessID, entry.szExeFile, GetLastError()));
gotEntry = nextProcessEntry(snapshot, &entry);
continue;
}