mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-08 10:10:38 +08:00
12 lines
125 B
Go
12 lines
125 B
Go
package event
|
|
|
|
import (
|
|
"log"
|
|
"testing"
|
|
)
|
|
|
|
func TestLogWriter(t *testing.T) {
|
|
l := log.Default()
|
|
l.Println("Test 123")
|
|
}
|