photoprism/internal/event/log_writer_test.go
Michael Mayer cab5efba36 Logging: Add output writer wrapper so the default logger can use Logrus
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-12-23 01:35:59 +01:00

12 lines
125 B
Go

package event
import (
"log"
"testing"
)
func TestLogWriter(t *testing.T) {
l := log.Default()
l.Println("Test 123")
}