Skip to content

Commit

Permalink
chore: remove some unncessary logs
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Oct 18, 2024
1 parent 4de7b39 commit 3ebe9f7
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions Source/Ecsact/Public/EcsactUnreal/EcsactAsyncRunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,6 @@ auto UEcsactAsyncRunner::OnAsyncErrorRaw(
for(auto req_id : request_ids) {
auto cbs = self->RequestErrorCallbacks.Find(req_id);

UE_LOG(
LogTemp,
Warning,
TEXT("Received request error raw (req=%i)"),
static_cast<int>(req_id)
);

if(cbs && !cbs->IsEmpty()) {
for(auto& cb : *cbs) {
if(!cb.ExecuteIfBound(async_err)) {
Expand All @@ -128,13 +121,6 @@ auto UEcsactAsyncRunner::OnAsyncErrorRaw(
);
}
}
} else {
UE_LOG(
Ecsact,
Warning,
TEXT("No async error callbacks for request %i"),
req_id
);
}
}
}
Expand All @@ -160,13 +146,6 @@ auto UEcsactAsyncRunner::OnAsyncRequestDoneRaw(
for(auto req_id : request_ids) {
auto cbs = self->RequestDoneCallbacks.Find(req_id);

UE_LOG(
LogTemp,
Warning,
TEXT("Received request done raw (req=%i)"),
static_cast<int>(req_id)
);

if(cbs && !cbs->IsEmpty()) {
for(auto& cb : *cbs) {
if(!cb.ExecuteIfBound()) {
Expand Down

0 comments on commit 3ebe9f7

Please sign in to comment.