Latest build

This commit is contained in:
Brad Arant 2021-08-26 22:57:07 -07:00
parent 608f8a2b0c
commit 0a03b3553d
7 changed files with 3 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -16,8 +16,9 @@ namespace core {
} }
void TCPSession::protocol(coreutils::ZString &data) { void TCPSession::protocol(coreutils::ZString &data) {
if(!server.commands.processRequest(data, *this)) if(!server.commands.processRequest(data, *this)) {
throw coreutils::Exception("Data received is not valid."); coreutils::Log(coreutils::LOG_DEBUG_1) << data.str();
}
} }
void TCPSession::onRegistered() { void TCPSession::onRegistered() {