mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 02:24:24 +00:00
11 lines
125 B
Go
11 lines
125 B
Go
package event
|
|
|
|
import (
|
|
"log"
|
|
"testing"
|
|
)
|
|
|
|
func TestLogWriter(t *testing.T) {
|
|
l := log.Default()
|
|
l.Println("Test 123")
|
|
}
|