sync: Unneeded log
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
nemunaire 2022-06-07 00:54:20 +02:00
parent 83a579fbd2
commit 9a2fd85d57

View File

@ -5,7 +5,6 @@ import (
"fmt" "fmt"
"io" "io"
"io/ioutil" "io/ioutil"
"log"
"os" "os"
"path" "path"
) )
@ -55,7 +54,6 @@ func (i LocalImporter) exists(filename string) bool {
} }
func (i LocalImporter) toURL(filename string) string { func (i LocalImporter) toURL(filename string) string {
log.Println(i.Base, filename, path.Join(i.Base, filename))
return path.Join(i.Base, filename) return path.Join(i.Base, filename)
} }