|
|
|
@ -271,33 +271,33 @@ return *this;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Log & Log::LogString(const std::string & value, size_t max_size)
|
|
|
|
|
/*
|
|
|
|
|
Log & Log::put_string(const std::string & value, size_t max_size)
|
|
|
|
|
{
|
|
|
|
|
pt::Log::LogString(value, max_size);
|
|
|
|
|
pt::Log::put_string(value, max_size);
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Log & Log::LogString(const std::wstring & value, size_t max_size)
|
|
|
|
|
Log & Log::put_string(const std::wstring & value, size_t max_size)
|
|
|
|
|
{
|
|
|
|
|
pt::Log::LogString(value, max_size);
|
|
|
|
|
pt::Log::put_string(value, max_size);
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Log & Log::LogBinary(const char * blob, size_t blob_len)
|
|
|
|
|
Log & Log::put_binary_blob(const char * blob, size_t blob_len)
|
|
|
|
|
{
|
|
|
|
|
pt::Log::LogBinary(blob, blob_len);
|
|
|
|
|
pt::Log::put_binary_blob(blob, blob_len);
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Log & Log::LogBinary(const std::string & blob)
|
|
|
|
|
Log & Log::put_binary_blob(const std::string & blob)
|
|
|
|
|
{
|
|
|
|
|
pt::Log::LogBinary(blob);
|
|
|
|
|
pt::Log::put_binary_blob(blob);
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|