mirror of
https://github.com/therootcompany/serviceman.git
synced 2025-02-09 17:25:38 +00:00
12 lines
223 B
Go
12 lines
223 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"git.rootprojects.org/root/serviceman/service"
|
|
)
|
|
|
|
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)
|
|
}
|