summaryrefslogtreecommitdiff
path: root/src/resources/db/questdb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/db/questdb.cpp')
-rw-r--r--src/resources/db/questdb.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/resources/db/questdb.cpp b/src/resources/db/questdb.cpp
index 44c59226c..d932b656e 100644
--- a/src/resources/db/questdb.cpp
+++ b/src/resources/db/questdb.cpp
@@ -46,6 +46,7 @@ namespace
void QuestDb::load()
{
unload();
+ logger->log1("Initializing quest database...");
loadXmlFile(paths.getStringValue("questsFile"), SkipError_false);
loadXmlFile(paths.getStringValue("questsPatchFile"), SkipError_true);
loadXmlDir("questsPatchDir", loadXmlFile);
@@ -213,6 +214,7 @@ void QuestDb::loadXmlFile(const std::string &fileName,
void QuestDb::unload()
{
+ logger->log1("Unloading quest database...");
for (std::map<int, STD_VECTOR<QuestItem*> >::iterator it
= mQuests.begin(), it_end = mQuests.end(); it != it_end; ++ it)
{