5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-19 21:52:32 +00:00

Update output

This commit is contained in:
Neil Alexander 2019-03-03 14:15:01 +00:00
parent 8f66d5b8dd
commit c940bae9e3
No known key found for this signature in database
GPG Key ID: A02A2019A2BB0944

View File

@ -404,7 +404,7 @@ func (a *admin) listen() {
if _, err := os.Stat(a.listenaddr[7:]); err == nil {
a.core.log.Debugln("Admin socket", a.listenaddr[7:], "already exists, trying to clean up")
if _, err := net.Dial("unix", a.listenaddr[7:]); err == nil {
a.core.log.Errorln("Admin socket", a.listenaddr[7:], "is already in use by another process")
a.core.log.Errorln("Admin socket", a.listenaddr[7:], "already exists and is in use by another process")
os.Exit(1)
} else {
if err := os.Remove(a.listenaddr[7:]); err == nil {