Skip to content

Commit

Permalink
Fix disabling of debug
Browse files Browse the repository at this point in the history
  • Loading branch information
strk committed Jan 9, 2020
1 parent 5109e17 commit 95cb05e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/plugins/db_manager/db_plugins/postgis/connector.py
Expand Up @@ -58,7 +58,8 @@ def classFactory():
class CursorAdapter():

def _debug(self, msg):
#print("XXX CursorAdapter[" + hex(id(self)) + "]: " + msg)
pass
print("XXX CursorAdapter[" + hex(id(self)) + "]: " + msg)

def __init__(self, connection, sql=None):
self._debug("Created with sql: " + str(sql))
Expand Down

0 comments on commit 95cb05e

Please sign in to comment.