Skip to content

Commit 68187ac

Browse files
committed
Add Bind Variables to log output
1 parent f091501 commit 68187ac

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

pygeoapi/provider/oracle.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1070,6 +1070,8 @@ def get(self, identifier, crs_transform_spec=None, **kwargs):
10701070
cursor.execute(sql_query, bind_variables)
10711071
except oracledb.Error as err:
10721072
LOGGER.error(f"Error executing sql_query: {sql_query}")
1073+
#GA Customisation - Bind Variables to see what the "in_id" is
1074+
LOGGER.error(f"Bind Variables: {bind_variables}")
10731075
LOGGER.error(err)
10741076
raise ProviderQueryError()
10751077

0 commit comments

Comments
 (0)