Server: Improve some log messages (#9820)
[oweals/minetest.git] / src / ban.cpp
index 6a747948bb06ecf84b6b12fceb893cd138d2f077..3decc9666117274c4a7e21d490b4ce567edca655 100644 (file)
@@ -1,6 +1,7 @@
 /*
 Minetest
 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
+Copyright (C) 2018 nerzhul, Loic BLOT <loic.blot@unix-experience.fr>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
@@ -33,8 +34,8 @@ BanManager::BanManager(const std::string &banfilepath):
        try {
                load();
        } catch(SerializationError &e) {
-               warningstream<<"BanManager: creating "
-                               <<m_banfilepath<<std::endl;
+               infostream << "BanManager: creating "
+                               << m_banfilepath << std::endl;
        }
 }
 
@@ -125,11 +126,11 @@ void BanManager::remove(const std::string &ip_or_name)
        for (StringMap::iterator it = m_ips.begin(); it != m_ips.end();) {
                if ((it->first == ip_or_name) || (it->second == ip_or_name)) {
                        m_ips.erase(it++);
+                       m_modified = true;
                } else {
                        ++it;
                }
        }
-       m_modified = true;
 }