Banmanager: Move 'creating' message from warningstream to infostream (#6277)

This commit is contained in:
Paramat 2017-08-19 07:06:22 +01:00 committed by Loïc Blot
parent d1a39f0140
commit e53d8a7536
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,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;
}
}