Skip to content
This repository has been archived by the owner on Jan 8, 2025. It is now read-only.

Commit

Permalink
Fix for aws-sdk-cpp log interface change - Issue 44
Browse files Browse the repository at this point in the history
  • Loading branch information
russnic committed Apr 10, 2024
1 parent 9515e85 commit 7f3a35a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gsts3multipartuploader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ class Logger : public Aws::Utils::Logging::LogSystemInterface
va_end (varargs);
}

void vaLog(Aws::Utils::Logging::LogLevel logLevel, const char* tag, const char* formatStr, va_list args) override
{
}

void LogStream(Aws::Utils::Logging::LogLevel log_level, const char* tag, const Aws::OStringStream &message_stream) override
{
Log(log_level, tag, "%s", message_stream.str().c_str());
Expand Down

0 comments on commit 7f3a35a

Please sign in to comment.