Skip to content

Commit 9e7e60e

Browse files
authored
Updated server start and stop logger messages to be Info not Error level (#431)
1 parent 968efe0 commit 9e7e60e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ func main() {
194194
mudlog.Warn("Discord", "info", "integration is disabled")
195195
}
196196

197-
mudlog.Error(
197+
mudlog.Info(
198198
"Starting server",
199199
"name", string(c.Server.MudName),
200200
)
@@ -294,7 +294,7 @@ func main() {
294294

295295
// some last minute stats reporting
296296
totalConnections, totalDisconnections := connections.Stats()
297-
mudlog.Error(
297+
mudlog.Info(
298298
"Stopping server",
299299
"LifetimeConnections", totalConnections,
300300
"LifetimeDisconnects", totalDisconnections,

0 commit comments

Comments
 (0)