mirror of
https://github.com/status-im/consul.git
synced 2025-01-14 15:54:40 +00:00
13eefbb840
* fixes file name for consul * added log file * added tests for rename method * append instead of trunc * fix file truncate issue * added changelog * fix for build destros ci * removed changelog * solaris
17 lines
343 B
Go
17 lines
343 B
Go
//go:build darwin || freebsd || netbsd || openbsd
|
|
// +build darwin freebsd netbsd openbsd
|
|
|
|
package logging
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
func (l *LogFile) createTime(stat os.FileInfo) time.Time {
|
|
stat_t := stat.Sys().(*syscall.Stat_t)
|
|
createTime := stat_t.Ctimespec
|
|
return time.Unix(int64(createTime.Sec), int64(createTime.Nsec))
|
|
}
|