diff --git a/cmd/runmqserver/main.go b/cmd/runmqserver/main.go index efb93c7..0aacd1f 100644 --- a/cmd/runmqserver/main.go +++ b/cmd/runmqserver/main.go @@ -228,8 +228,10 @@ func doMain() error { } else { f = f + ".LOG" mirrorLifecycle, err = mirrorLog(f, func(msg string) { - // Log the message, so we get a timestamp etc. - log.Println(msg) + if strings.HasPrefix(msg, "AMQ") { + // Log the message, so we get a timestamp etc. + log.Println(msg) + } }) } if err != nil {