File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
src/main/java/io/supertokens/storage/postgresql Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 4848import io .supertokens .pluginInterface .sqlStorage .TransactionConnection ;
4949import io .supertokens .pluginInterface .thirdparty .exception .DuplicateThirdPartyUserException ;
5050import io .supertokens .pluginInterface .thirdparty .sqlStorage .ThirdPartySQLStorage ;
51- import io .supertokens .pluginInterface .usermetadata .UserMetadataStorage ;
5251import io .supertokens .pluginInterface .usermetadata .sqlStorage .UserMetadataSQLStorage ;
5352import io .supertokens .storage .postgresql .config .Config ;
5453import io .supertokens .storage .postgresql .config .PostgreSQLConfig ;
5554import io .supertokens .storage .postgresql .output .Logging ;
5655import io .supertokens .storage .postgresql .queries .*;
57- import netscape .javascript .JSObject ;
58-
5956import org .jetbrains .annotations .NotNull ;
6057import org .jetbrains .annotations .Nullable ;
6158import org .jetbrains .annotations .TestOnly ;
@@ -216,12 +213,6 @@ public <T> T startTransaction(TransactionLogic<T> logic, TransactionIsolationLev
216213 if (e instanceof StorageQueryException ) {
217214 throw (StorageQueryException ) e ;
218215 } else if (e instanceof StorageTransactionLogicException ) {
219- Logging .debug (this ,
220- "Number of retries: " + tries + ". Actual exception message: " + actualException );
221- if (psqlException != null ) {
222- Logging .debug (this ,
223- "PSQL error status code: " + psqlException .getServerErrorMessage ().getSQLState ());
224- }
225216 throw (StorageTransactionLogicException ) e ;
226217 }
227218 throw new StorageQueryException (e );
You can’t perform that action at this time.
0 commit comments