diff --git a/docs/en_US/release_notes_4_3.rst b/docs/en_US/release_notes_4_3.rst index fff7490d9..fb73838d6 100644 --- a/docs/en_US/release_notes_4_3.rst +++ b/docs/en_US/release_notes_4_3.rst @@ -32,6 +32,7 @@ Bug fixes | `Bug #3873 `_ - Fix context sub-menu alignment on Safari. | `Bug #3906 `_ - Fix alignment of Close and Maximize button of Grant Wizard. | `Bug #3912 `_ - Fix editing of table data with a JSON primary key. +| `Bug #3933 `_ - Ignore exceptions in the logger. | `Bug #3942 `_ - Close connections gracefully when the user logs out of pgAdmin. | `Bug #3946 `_ - Fix alignment of checkbox to drop multiple schedules of pgAgent job. | `Bug #3958 `_ - Don't exclude SELECT statements from transaction management in the Query Tool in case they call data-modifying functions. diff --git a/web/pgadmin/__init__.py b/web/pgadmin/__init__.py index b821aab7b..eea268aa8 100644 --- a/web/pgadmin/__init__.py +++ b/web/pgadmin/__init__.py @@ -213,6 +213,10 @@ def create_app(app_name=None): # Setup logging and log the application startup ########################################################################## + # We won't care about errors in the logging system, we are more + # interested in application errors. + logging.raiseException = False + # Add SQL level logging, and set the base logging level logging.addLevelName(25, 'SQL') app.logger.setLevel(logging.DEBUG)