mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-21 12:15:54 +00:00
[CI] clang-tidy auto fixes (#1385)
Fixes #1384. Please review and commit clang-tidy fixes. Co-authored-by: kuznetsss <kuznetsss@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
b8cb60b7db
commit
8f47128424
@@ -99,15 +99,14 @@ public:
|
||||
bool cacheOnly = false
|
||||
)
|
||||
{
|
||||
LOG(log_.trace()) << "Processing response. "
|
||||
<< "Marker prefix = " << getMarkerPrefix();
|
||||
LOG(log_.trace()) << "Processing response. " << "Marker prefix = " << getMarkerPrefix();
|
||||
if (abort) {
|
||||
LOG(log_.error()) << "AsyncCallData aborted";
|
||||
return CallStatus::ERRORED;
|
||||
}
|
||||
if (!status_.ok()) {
|
||||
LOG(log_.error()) << "AsyncCallData status_ not ok: "
|
||||
<< " code = " << status_.error_code() << " message = " << status_.error_message();
|
||||
LOG(log_.error()) << "AsyncCallData status_ not ok: " << " code = " << status_.error_code()
|
||||
<< " message = " << status_.error_message();
|
||||
return CallStatus::ERRORED;
|
||||
}
|
||||
if (!next_->is_unlimited()) {
|
||||
|
||||
Reference in New Issue
Block a user