diff options
author | hor911 <hor911@ydb.tech> | 2022-09-11 12:27:08 +0300 |
---|---|---|
committer | hor911 <hor911@ydb.tech> | 2022-09-11 12:27:08 +0300 |
commit | dd41db945e8b053b8915d372d4c7d21782342cdc (patch) | |
tree | a0daf08e09d515890958c16f8cf8aa51703c42ce | |
parent | 0648583939a54be7d704ae9ff043ae0f42b97e4c (diff) | |
download | ydb-dd41db945e8b053b8915d372d4c7d21782342cdc.tar.gz |
Log Key and Url
-rw-r--r-- | ydb/library/yql/providers/s3/actors/yql_s3_write_actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/library/yql/providers/s3/actors/yql_s3_write_actor.cpp b/ydb/library/yql/providers/s3/actors/yql_s3_write_actor.cpp index adff44c2ea2..841b44d6f19 100644 --- a/ydb/library/yql/providers/s3/actors/yql_s3_write_actor.cpp +++ b/ydb/library/yql/providers/s3/actors/yql_s3_write_actor.cpp @@ -105,7 +105,7 @@ public: void Bootstrap(const TActorId& parentId) { ParentId = parentId; - LOG_D("TS3FileWriteActor", "Bootstrapped by " << ParentId); + LOG_D("TS3FileWriteActor", "Bootstrapped by " << ParentId << " for Key: [" << Key << "], Url: [" << Url << "]"); if (Parts->IsSealed() && 1U == Parts->Size()) { const auto size = Parts->Volume(); InFlight += size; |