Log when local file search finishes

This commit is contained in:
Christian Rocha 2020-08-21 11:56:40 -04:00 committed by Christian Muehlhaeuser
parent 651683cd21
commit 3572ef5470

View file

@ -425,6 +425,9 @@ func findNextLocalFile(m model) tea.Cmd {
return foundLocalFileMsg(pathStr)
}
// We're done
if debug {
log.Println("Local file search finished")
}
return localFileSearchFinished{}
}
}