diff options
| author | Grant Limberg <[email protected]> | 2023-02-22 16:13:05 -0800 |
|---|---|---|
| committer | Grant Limberg <[email protected]> | 2023-02-22 16:13:05 -0800 |
| commit | dea47f601d458ff810c7949f35bc06f6ba6df170 (patch) | |
| tree | 8b2c10d77620cf93d559c543466c81dc115da8f9 | |
| parent | dc762196dc65d3de0b7adc6b4ac8bece95f5cd9e (diff) | |
more info on exception
| -rw-r--r-- | controller/PostgreSQL.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controller/PostgreSQL.cpp b/controller/PostgreSQL.cpp index 183cb3c4..e7bdd052 100644 --- a/controller/PostgreSQL.cpp +++ b/controller/PostgreSQL.cpp @@ -517,7 +517,7 @@ AuthInfo PostgreSQL::getSSOAuthInfo(const nlohmann::json &member, const std::str _pool->unborrow(c); } catch (std::exception &e) { - fprintf(stderr, "ERROR: Error updating member on load: %s\n", e.what()); + fprintf(stderr, "ERROR: Error updating member on load for network %s: %s\n", networkId.c_str(), e.what()); } return info; //std::string(authenticationURL); |
