15 lines
348 B
Go
15 lines
348 B
Go
package logging
|
|
|
|
import (
|
|
`os`
|
|
)
|
|
|
|
const (
|
|
// logPerm is the octal mode to use for testing the file.
|
|
logPerm os.FileMode = 0600
|
|
// logPrefix is the default log prefix.
|
|
logPrefix string = "GOLANG PROGRAM"
|
|
// appendFlags are the flags used for testing the file (and opening/writing).
|
|
appendFlags int = os.O_APPEND | os.O_CREATE | os.O_WRONLY
|
|
)
|