1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

Log server shutdown using actionstream (#7589)

This commit is contained in:
ClobberXD 2018-07-28 16:28:02 +05:30 committed by SmallJoker
parent d7d451c647
commit e8aad2ee00

View file

@ -236,7 +236,6 @@ Server::Server(
Server::~Server() Server::~Server()
{ {
infostream << "Server destructing" << std::endl;
// Send shutdown message // Send shutdown message
SendChatMessage(PEER_ID_INEXISTENT, ChatMessage(CHATMESSAGE_TYPE_ANNOUNCE, SendChatMessage(PEER_ID_INEXISTENT, ChatMessage(CHATMESSAGE_TYPE_ANNOUNCE,
@ -262,6 +261,8 @@ Server::~Server()
kick_msg, reconnect); kick_msg, reconnect);
} }
actionstream << "Server: Shutting down" << std::endl;
// Do this before stopping the server in case mapgen callbacks need to access // Do this before stopping the server in case mapgen callbacks need to access
// server-controlled resources (like ModStorages). Also do them before // server-controlled resources (like ModStorages). Also do them before
// shutdown callbacks since they may modify state that is finalized in a // shutdown callbacks since they may modify state that is finalized in a