@@ -565,18 +565,22 @@ export class WorkspaceService {
565565 workspace . deletionEligibilityTime &&
566566 workspace . deletionEligibilityTime > deletionEligibilityTime . toISOString ( )
567567 ) {
568- log . warn ( { userId, workspaceId } , "Prevented moving deletion eligibility time backwards" , {
569- hasGitChanges,
570- timestamps : new TrustedValue ( {
571- wouldBeDeletionEligibilityTime : deletionEligibilityTime . toISOString ( ) ,
572- currentDeletionEligibilityTime : workspace . deletionEligibilityTime ,
573- instanceStoppingTime : instance ?. stoppingTime ,
574- instanceStartedTime : instance ?. startedTime ,
575- instanceCreationTime : instance ?. creationTime ,
576- workspaceCreationTime : workspace . creationTime ,
577- lastActive,
578- } ) ,
579- } ) ;
568+ log . warn (
569+ { userId, workspaceId, instanceId : instance ?. id } ,
570+ "Prevented moving deletion eligibility time backwards" ,
571+ {
572+ hasGitChanges,
573+ timestamps : new TrustedValue ( {
574+ wouldBeDeletionEligibilityTime : deletionEligibilityTime . toISOString ( ) ,
575+ currentDeletionEligibilityTime : workspace . deletionEligibilityTime ,
576+ instanceStoppingTime : instance ?. stoppingTime ,
577+ instanceStartedTime : instance ?. startedTime ,
578+ instanceCreationTime : instance ?. creationTime ,
579+ workspaceCreationTime : workspace . creationTime ,
580+ lastActive,
581+ } ) ,
582+ } ,
583+ ) ;
580584 return ;
581585 }
582586 await this . db . updatePartial ( workspaceId , {
0 commit comments