Skip to content

Commit

Permalink
put double ' around log parameter (#2936)
Browse files Browse the repository at this point in the history
fixes Issue #2935
  • Loading branch information
davecramer committed Aug 3, 2023
1 parent aff581f commit 5c9928d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ public int getSQLType(int typeOid) throws SQLException {
return i;
}

LOGGER.log(Level.FINEST, "querying SQL typecode for pg type oid '{0}'", intOidToLong(typeOid));
LOGGER.log(Level.FINEST, "querying SQL typecode for pg type oid ''{0}''", intOidToLong(typeOid));

PreparedStatement getTypeInfoStatement = prepareGetTypeInfoStatement();

Expand Down

0 comments on commit 5c9928d

Please sign in to comment.