blob: aa467268512f28e1078cf3b1b0e00681dd558f6c [file] [log] [blame]
//go:build !windows
// +build !windows
package klog
import (
"os/user"
)
func getUserName() string {
userNameOnce.Do(func() {
current, err := user.Current()
if err == nil {
userName = current.Username
}
})
return userName
}