diff options
Diffstat (limited to 'src/database')
-rw-r--r-- | src/database/postgresql_engine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/database/postgresql_engine.cpp b/src/database/postgresql_engine.cpp index abeb779..d97f2ff 100644 --- a/src/database/postgresql_engine.cpp +++ b/src/database/postgresql_engine.cpp @@ -128,7 +128,7 @@ void PostgresqlEngine::init_session() { const auto res = this->raw_exec("SET SESSION TIME ZONE 'UTC'"); if (!std::get<bool>(res)) - log_debug("Failed to set UTC timezone: ", std::get<std::string>(res)); + log_error("Failed to set UTC timezone: ", std::get<std::string>(res)); } long double PostgresqlEngine::epoch_to_floating_value(long double seconds) const { |