summaryrefslogtreecommitdiff
path: root/src/resources/db/textdb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/db/textdb.cpp')
-rw-r--r--src/resources/db/textdb.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/resources/db/textdb.cpp b/src/resources/db/textdb.cpp
index e4d0b9b65..cfd5faf76 100644
--- a/src/resources/db/textdb.cpp
+++ b/src/resources/db/textdb.cpp
@@ -36,6 +36,7 @@ namespace
void TextDb::load()
{
unload();
+ logger->log1("Initializing text database...");
loadXmlFile(paths.getStringValue("textsFile"), SkipError_false);
loadXmlFile(paths.getStringValue("textsPatchFile"), SkipError_true);
loadXmlDir("textsPatchDir", loadXmlFile);
@@ -83,6 +84,7 @@ void TextDb::loadXmlFile(const std::string &fileName,
void TextDb::unload()
{
+ logger->log1("Unloading text database...");
mTexts.clear();
}