Skip to content

Commit

Permalink
CR2
Browse files Browse the repository at this point in the history
  • Loading branch information
budevg committed Jan 27, 2025
1 parent fb0d480 commit 153c813
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cloud/filestore/libs/service_local/index.h
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,12 @@ class TLocalIndex

STORAGE_TRACE(
"Resolve node end, NodeId=" << pathElemRecord->NodeId);
} catch (...) {
} catch (const TServiceError& e) {
STORAGE_ERROR(
"Resolve node failed, NodeId=" << pathElemRecord->NodeId <<
", Exception=" << CurrentExceptionMessage());
"Resolve node failed, NodeId="
<< pathElemRecord->NodeId
<< ", Exception=" << FormatResultCode(e.GetCode())
<< " " << e.GetMessage());
NodeTable->DeleteRecord(pathElemIndex);
}

Expand Down

0 comments on commit 153c813

Please sign in to comment.