I assume there is a typo error in the question
it is delete not debug
and I will create my answer accordingly
you can use PowerShell scripts to Delete FSLogix Profiles
https://github.com/aaronparker/fslogix/tree/main/Profile-Cleanup
$FSLogixProfilePath = "\\path\FsLogixProfiles"
$DaysInactive = 90
Get-ChildItem $FSLogixProfilePath -Recurse |
Where-Object { !$_.PSIsContainer && $_.LastWriteTime -lt (Get-Date).AddDays(-$DaysInactive) } |
ForEach-Object { Remove-Item $_.FullName -Force -Confirm:$false }