From 4dd518cbb14df521943094092211e4759f57f955 Mon Sep 17 00:00:00 2001 From: Alessandro Ros Date: Wed, 7 Jun 2023 12:25:16 +0200 Subject: [PATCH] rebrand initial log message (#1922) --- internal/core/core.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/core/core.go b/internal/core/core.go index 9dcec3d8..3f64a978 100644 --- a/internal/core/core.go +++ b/internal/core/core.go @@ -58,7 +58,7 @@ var cli struct { // New allocates a core. func New(args []string) (*Core, bool) { parser, err := kong.New(&cli, - kong.Description("MediaMTX / rtsp-simple-server "+version), + kong.Description("MediaMTX "+version), kong.UsageOnError(), kong.ValueFormatter(func(value *kong.Value) string { switch value.Name { @@ -198,7 +198,7 @@ func (p *Core) createResources(initial bool) error { } if initial { - p.Log(logger.Info, "MediaMTX / rtsp-simple-server %s", version) + p.Log(logger.Info, "MediaMTX %s", version) if !p.confFound { p.Log(logger.Warn, "configuration file not found, using an empty configuration") }