@@ -37,7 +37,7 @@ class TTxUnlockTabletExecution : public TTransactionBase<THive> {
3737 {}
3838
3939 bool Execute (TTransactionContext& txc, const TActorContext&) override {
40- BLOG_D (" THive::TTxUnlockTabletExecution::Execute TabletId: " << TabletId);
40+ BLOG_NOTICE (" THive::TTxUnlockTabletExecution::Execute TabletId: " << TabletId);
4141 SideEffects.Reset (Self->SelfId ());
4242 TLeaderTabletInfo* tablet = Self->FindTabletEvenInDeleting (TabletId);
4343 if (tablet == nullptr ) {
@@ -82,7 +82,7 @@ class TTxUnlockTabletExecution : public TTransactionBase<THive> {
8282 }
8383
8484 void Complete (const TActorContext& ctx) override {
85- BLOG_D (" THive::TTxUnlockTabletExecution::Complete TabletId: " << TabletId << " SideEffects: " << SideEffects);
85+ BLOG_NOTICE (" THive::TTxUnlockTabletExecution::Complete TabletId: " << TabletId << " SideEffects: " << SideEffects);
8686 SideEffects.Complete (ctx);
8787 }
8888
@@ -106,6 +106,7 @@ ITransaction* THive::CreateUnlockTabletExecution(ui64 tabletId, ui64 seqNo) {
106106
107107void THive::ScheduleUnlockTabletExecution (TNodeInfo& node) {
108108 // Unlock tablets that have been locked by this node
109+ BLOG_NOTICE (" ScheduleUnlockTabletExecution(" << node.Id << " , " << NKikimrHive::ELockLostReason_Name (reason) << " )" );
109110 for (TLeaderTabletInfo* tablet : node.LockedTablets ) {
110111 Y_ABORT_UNLESS (FindTabletEvenInDeleting (tablet->Id ) == tablet);
111112 Y_ABORT_UNLESS (tablet->LockedToActor .NodeId () == node.Id );
@@ -125,7 +126,7 @@ void THive::ScheduleUnlockTabletExecution(TNodeInfo& node) {
125126void THive::Handle (TEvPrivate::TEvUnlockTabletReconnectTimeout::TPtr& ev) {
126127 TTabletId tabletId = ev->Get ()->TabletId ;
127128 ui64 seqNo = ev->Get ()->SeqNo ;
128- BLOG_D (" THive::Handle::TEvUnlockTabletReconnectTimeout TabletId=" << tabletId);
129+ BLOG_NOTICE (" THive::Handle::TEvUnlockTabletReconnectTimeout TabletId=" << tabletId << " Reason= " << NKikimrHive::ELockLostReason_Name (ev-> Get ()-> Reason ) );
129130 TLeaderTabletInfo* tablet = FindTabletEvenInDeleting (tabletId);
130131 if (tablet != nullptr && tablet->IsLockedToActor () && tablet->PendingUnlockSeqNo == seqNo) {
131132 // We use sequence numbers to make sure unlock happens only if some
0 commit comments