fix: server inputs handling + better logging

This commit is contained in:
2021-10-25 23:48:28 +02:00
parent 1d7cb0d9b6
commit 8e3f90a7f3
3 changed files with 24 additions and 20 deletions

View File

@ -17,8 +17,11 @@ func CreateServerDir(serverName string) error {
return err
}
logrus.Infof("'%s' already exists, moving on...", serverPath)
logrus.Infof("%s already exists", serverPath)
return nil
}
logrus.Infof("successfully created %s", serverPath)
return nil
}