debug output
This commit is contained in:
parent
523510946d
commit
eabd423006
@ -13,7 +13,7 @@ import (
|
||||
"git.milar.in/nyaanime/parsers"
|
||||
)
|
||||
|
||||
func HandleFile(path string) {
|
||||
func HandleFile(path string) bool {
|
||||
for _, parser := range parsers.Parsers {
|
||||
parsedFile, ok := parser.FileParser(&parser, path)
|
||||
if !ok {
|
||||
@ -27,7 +27,10 @@ func HandleFile(path string) {
|
||||
|
||||
parsedFile.Anime = anime
|
||||
HandleParsedFile(parsedFile)
|
||||
return true
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
||||
func HandleParsedFile(parsedFile *model.ParsedFile) {
|
||||
|
10
main.go
10
main.go
@ -1,6 +1,8 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"git.milar.in/nyaanime/logic"
|
||||
"github.com/fsnotify/fsnotify"
|
||||
)
|
||||
@ -17,6 +19,12 @@ func main() {
|
||||
}
|
||||
|
||||
for file := range fsChan {
|
||||
HandleFile(file)
|
||||
fmt.Print("file found:", file)
|
||||
|
||||
fileHandled := HandleFile(file)
|
||||
|
||||
if !fileHandled {
|
||||
fmt.Print("file ignored:", file)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user