mirror of
https://github.com/stashapp/stash.git
synced 2025-12-10 10:22:18 +01:00
update delete logging
make delete logging info instead of debug update the logged text for clarity when deleting db data changed from "delete" to "cleaning" to clarify the actual type of action taken
This commit is contained in:
parent
151a0323c8
commit
619012a24d
1 changed files with 2 additions and 2 deletions
|
|
@ -20,9 +20,9 @@ func (t *CleanTask) Start(wg *sync.WaitGroup) {
|
|||
defer wg.Done()
|
||||
|
||||
if t.fileExists(t.Scene.Path) {
|
||||
logger.Debugf("Found: %s", t.Scene.Path)
|
||||
logger.Debugf("File Found: %s", t.Scene.Path)
|
||||
} else {
|
||||
logger.Debugf("Deleting missing file: %s", t.Scene.Path)
|
||||
logger.Infof("File not found. Cleaning: %s", t.Scene.Path)
|
||||
t.deleteScene(t.Scene.ID)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue