22 lines
431 B
Go
22 lines
431 B
Go
package main
|
|
|
|
import (
|
|
"git.haefelfinger.net/piwigo/DirectoriesToAlbums/internal/app"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/vharitonsky/iniflags"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
iniflags.Parse()
|
|
initializeLog()
|
|
app.Run()
|
|
}
|
|
|
|
func initializeLog() {
|
|
//TODO: make log configurable to file instead of console
|
|
logrus.SetLevel(logrus.DebugLevel)
|
|
logrus.SetOutput(os.Stdout)
|
|
logrus.Infoln("Starting Piwigo directories to albums...")
|
|
}
|