Revision 2924
Added by Aaron Marcuse-Kubitza over 12 years ago
lib/sql.py | ||
---|---|---|
371 | 371 |
'''Autocommits if outside savepoint''' |
372 | 372 |
assert self._savepoint >= 0 |
373 | 373 |
if self.autocommit and self._savepoint == 0: |
374 |
self.log_debug('Autocommitting') |
|
374 |
self.log_debug('Autocommitting', level=4)
|
|
375 | 375 |
self.db.commit() |
376 | 376 |
|
377 | 377 |
def col_info(self, col): |
Also available in: Unified diff
sql.py: DbConn.do_autocommit(): Output the "Autocommitting" debug message with level=4 so that it doesn't clutter up the logging output for normal verbosities