2019-07-07 06:48:25 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"git.rootprojects.org/root/go-serviceman/service"
|
|
|
|
)
|
|
|
|
|
|
|
|
func printLogMessage(conf *service.Service) {
|
2019-07-14 02:50:00 +00:00
|
|
|
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
|
|
|
}
|