]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/store/postgresql/postgresql_store.cpp
Implemented daily fee charge with backward compatibility.
[stg.git] / projects / stargazer / plugins / store / postgresql / postgresql_store.cpp
index 073fccab5d92ce84e8a46c5dd6d25e7973e6914b..51eec8f414626463cb72a99b61873e44d5309283 100644 (file)
@@ -46,6 +46,7 @@
 
 #include "stg/module_settings.h"
 #include "stg/plugin_creator.h"
+#include "stg/logger.h"
 #include "postgresql_store_utils.h"
 #include "postgresql_store.h"
 
@@ -70,7 +71,8 @@ POSTGRESQL_STORE::POSTGRESQL_STORE()
       mutex(),
       version(0),
       retries(3),
-      connection(NULL)
+      connection(NULL),
+      WriteServLog(GetStgLogger())
 {
 pthread_mutex_init(&mutex, NULL);
 }
@@ -231,6 +233,8 @@ if (CommitTransaction())
     return -1;
     }
 
+WriteServLog("POSTGRESQL_STORE: Current DB schema version: %d", version);
+
 return 0;
 }
 //-----------------------------------------------------------------------------