Added send function verification + licence

This commit is contained in:
Vyacheslav 2020-02-10 14:58:54 +03:00 committed by GitHub
parent ccad4ae04f
commit 3aa94a0997
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,3 +1,5 @@
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
#include <spdlog/spdlog.h>
#include <spdlog/sinks/base_sink.h>
@ -32,7 +34,9 @@ protected:
{
spdlog::memory_buf_t formatted;
spdlog::sinks::base_sink<Mutex>::formatter_->format(msg, formatted);
send(sock , formatted.data() , formatted.size() , 0 );
int res = send(sock , formatted.data() , formatted.size() , 0 );
if(res < 0)
SPDLOG_THROW(spdlog_ex("Message Send Failed", errno));
}
void flush_() override