summaryrefslogtreecommitdiff
path: root/src/ban.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2012-03-10 15:49:38 +0200
committerPerttu Ahola <celeron55@gmail.com>2012-03-10 15:49:38 +0200
commit9c5e422d3a5fc3784d261a1effdb94a44b84a41c (patch)
treef6e2fe229a98d168fa76a4126df2879f7c840fa4 /src/ban.cpp
parent5e001410059d3768be496bb7e67181d224db657e (diff)
downloadminetest-9c5e422d3a5fc3784d261a1effdb94a44b84a41c.tar.gz
minetest-9c5e422d3a5fc3784d261a1effdb94a44b84a41c.tar.bz2
minetest-9c5e422d3a5fc3784d261a1effdb94a44b84a41c.zip
Ban and Auth managers use infostream rather than dstream
Diffstat (limited to 'src/ban.cpp')
-rw-r--r--src/ban.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ban.cpp b/src/ban.cpp
index 398976260..7fa8eb058 100644
--- a/src/ban.cpp
+++ b/src/ban.cpp
@@ -23,7 +23,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <sstream>
#include <set>
#include "strfnd.h"
-#include "debug.h"
+#include "log.h"
BanManager::BanManager(const std::string &banfilepath):
m_banfilepath(banfilepath),
@@ -35,7 +35,7 @@ BanManager::BanManager(const std::string &banfilepath):
}
catch(SerializationError &e)
{
- dstream<<"WARNING: BanManager: creating "
+ infostream<<"WARNING: BanManager: creating "
<<m_banfilepath<<std::endl;
}
}
@@ -48,11 +48,11 @@ BanManager::~BanManager()
void BanManager::load()
{
JMutexAutoLock lock(m_mutex);
- dstream<<"BanManager: loading from "<<m_banfilepath<<std::endl;
+ infostream<<"BanManager: loading from "<<m_banfilepath<<std::endl;
std::ifstream is(m_banfilepath.c_str(), std::ios::binary);
if(is.good() == false)
{
- dstream<<"BanManager: failed loading from "<<m_banfilepath<<std::endl;
+ infostream<<"BanManager: failed loading from "<<m_banfilepath<<std::endl;
throw SerializationError("BanManager::load(): Couldn't open file");
}
@@ -75,12 +75,12 @@ void BanManager::load()
void BanManager::save()
{
JMutexAutoLock lock(m_mutex);
- dstream<<"BanManager: saving to "<<m_banfilepath<<std::endl;
+ infostream<<"BanManager: saving to "<<m_banfilepath<<std::endl;
std::ofstream os(m_banfilepath.c_str(), std::ios::binary);
if(os.good() == false)
{
- dstream<<"BanManager: failed loading from "<<m_banfilepath<<std::endl;
+ infostream<<"BanManager: failed loading from "<<m_banfilepath<<std::endl;
throw SerializationError("BanManager::load(): Couldn't open file");
}