diff --git a/main.go b/main.go index ef65066..362ebb7 100644 --- a/main.go +++ b/main.go @@ -50,6 +50,6 @@ func main() { } func SoftwareInfo() string { - return fmt.Sprintf("flokatimx %s-%s (%s) [%s]", - Version, Build, Builddate, runtime.Version()) + return fmt.Sprintf("flokati/%s %s-%s (%s) [%s]", + *protocol, Version, Build, Builddate, runtime.Version()) } diff --git a/matrix.go b/matrix.go index 5357921..64368ee 100644 --- a/matrix.go +++ b/matrix.go @@ -40,7 +40,6 @@ func Matrix() { } }() - xlog.Info("%s started", SoftwareInfo()) sayCh <- fmt.Sprintf("%s\n%s", "*", SoftwareInfo()) for { @@ -60,5 +59,4 @@ func Matrix() { time.Sleep(1 * time.Second) } } - time.Sleep(1 * time.Millisecond) }