photoprism/internal/meta/meta_test.go

17 lines
203 B
Go
Raw Permalink Normal View History

package meta
import (
"os"
"testing"
"github.com/sirupsen/logrus"
)
func TestMain(m *testing.M) {
log = logrus.StandardLogger()
log.SetLevel(logrus.TraceLevel)
code := m.Run()
os.Exit(code)
}