Skip to content

Commit 22703cd

Browse files
committed
Remove debug output
1 parent 1e4b651 commit 22703cd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/client/topic/ut/topic_to_table_ut.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ TVector<TString> TFixture::ReadFromTopic(const TString& topicPath,
896896
if (auto* e = std::get_if<NTopic::TReadSessionEvent::TDataReceivedEvent>(&event)) {
897897
Cerr << e->HasCompressedMessages() << " " << e->GetMessagesCount() << Endl;
898898
for (auto& m : e->GetMessages()) {
899-
messages.push_back(TString{m.GetData()});
899+
messages.emplace_back(m.GetData());
900900
}
901901

902902
if (!tx) {

src/client/types/status/status.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ bool TStreamPartStatus::EOS() const {
104104
namespace NStatusHelpers {
105105

106106
void ThrowOnError(TStatus status, std::function<void(TStatus)> onSuccess) {
107-
std::cerr << "THROW ON ERROR" << std::endl;
108107
if (!status.IsSuccess()) {
109108
throw TYdbErrorException(status) << status;
110109
} else {

0 commit comments

Comments
 (0)