2
1
mirror of https://github.com/therootcompany/serviceman.git synced 2026-01-14 14:18:39 +00:00
serviceman/serviceman_darwin.go

12 lines
223 B
Go
Raw Permalink Normal View History

2019-07-07 06:48:25 +00:00
package main
import (
"fmt"
2020-12-02 16:18:34 -07:00
"git.rootprojects.org/root/serviceman/service"
2019-07-07 06:48:25 +00:00
)
func printLogMessage(conf *service.Service) {
fmt.Printf("If all went well the logs should have been created at:\n\n\t%s\n", conf.Logdir)
2019-07-07 06:48:25 +00:00
}