X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/dd4d8887d9e281e81c4cd511026ed44e7dcf68b4..22e3e39be9fa6422a0167995299c341fd5ac5607:/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp

diff --git a/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp b/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp
index aabce23b..37ff6dbd 100644
--- a/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp
+++ b/projects/stargazer/plugins/store/postgresql/postgresql_store.cpp
@@ -96,15 +96,15 @@ std::vector<PARAM_VALUE>::iterator i;
 for(i = settings.moduleParams.begin(); i != settings.moduleParams.end(); ++i)
     {
     std::string param(ToLower(i->param));
-    if (s == "server")
+    if (param == "server")
         server = *(i->value.begin());
-    else if (s == "database")
+    else if (param == "database")
         database = *(i->value.begin());
-    else if (s == "user")
+    else if (param == "user")
         user = *(i->value.begin());
-    else if (s == "password")
+    else if (param == "password")
         password = *(i->value.begin());
-    else if (s == "retries")
+    else if (param == "retries")
         if (str2x(*(i->value.begin()), retries))
             {
             strError = "Invalid 'retries' value";
@@ -224,6 +224,8 @@ if (CommitTransaction())
     return -1;
     }
 
+logger("POSTGRESQL_STORE: Current DB schema version: %d", version);
+
 return 0;
 }
 //-----------------------------------------------------------------------------