From a44684f6e7ab2ecaedc1971632728e753c1b1af2 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Tue, 15 Feb 2022 15:20:25 +0100 Subject: [PATCH] Add backend provided message to all auth loggings --- src/THeartbeatThread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/THeartbeatThread.cpp b/src/THeartbeatThread.cpp index df95aab..b611664 100644 --- a/src/THeartbeatThread.cpp +++ b/src/THeartbeatThread.cpp @@ -109,10 +109,10 @@ void THeartbeatThread::operator()() { if (Ok && !isAuth) { if (Status == "2000") { - beammp_info(("Authenticated!")); + beammp_info(("Authenticated! " + Message)); isAuth = true; } else if (Status == "200") { - beammp_info(("Resumed authenticated session!")); + beammp_info(("Resumed authenticated session! " + Message)); isAuth = true; } else { if (Message.empty()) {