mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-08 18:20:55 +08:00
14 lines
225 B
Go
14 lines
225 B
Go
package event
|
||
|
||
import (
|
||
"fmt"
|
||
"strings"
|
||
)
|
||
|
||
var MessageSep = " › "
|
||
|
||
// Format formats an audit log event.
|
||
func Format(ev []string, args ...interface{}) string {
|
||
return fmt.Sprintf(strings.Join(ev, MessageSep), args...)
|
||
}
|