Commit b4312784e717434b92f0a8a8d951635a14adbf47

Authored by Wiebe Cazemier
1 parent 2b9d7c39

Remove message from Session's destructor

This causes confusion when saving sessions, because copy objects are
being destroyed.
Showing 1 changed file with 1 additions and 1 deletions
session.cpp
... ... @@ -89,7 +89,7 @@ Session::Session(const Session &other)
89 89  
90 90 Session::~Session()
91 91 {
92   - logger->logf(LOG_DEBUG, "Session %s is being destroyed.", getClientId().c_str());
  92 +
93 93 }
94 94  
95 95 std::unique_ptr<Session> Session::getCopy() const
... ...