diff --git a/src/gui/qt/gametable/log/log.cpp b/src/gui/qt/gametable/log/log.cpp
index 6bcc0c1b..da8459f7 100755
--- a/src/gui/qt/gametable/log/log.cpp
+++ b/src/gui/qt/gametable/log/log.cpp
@@ -325,11 +325,15 @@ void Log::logFlipHoleCardsMsg(QString playerName, int card1, int card2, int card
void Log::logPlayerLeftMsg(QString playerName, int wasKicked) {
- myW->textBrowser_Log->append( ""+playerName+" has left the game!");
+ QString action;
+ if(wasKicked) action = "was kicked from";
+ else action = "has left";
+
+ myW->textBrowser_Log->append( ""+playerName+" "+action+" the game!");
if(myConfig->readConfigInt("LogOnOff")) {
- logFileStreamString += ""+playerName+" has left the game!
\n";
+ logFileStreamString += ""+playerName+" "+action+" the game!
\n";
if(myConfig->readConfigInt("LogInterval") == 0) {
writeLogFileStream(logFileStreamString);