updated to the new pikotools api (changes in Log)

This commit is contained in:
2021-06-24 21:17:03 +02:00
parent bf1f0954b9
commit b6340a30d2
10 changed files with 38 additions and 28 deletions

View File

@@ -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;
}
*/