diff --git a/docs/en_US/release_notes_4_30.rst b/docs/en_US/release_notes_4_30.rst index d8e51d790..c47a66864 100644 --- a/docs/en_US/release_notes_4_30.rst +++ b/docs/en_US/release_notes_4_30.rst @@ -36,3 +36,4 @@ Bug fixes | `Issue #6084 `_ - Fixed TypeError exception in schema diff when selected any identical object. | `Issue #6096 `_ - Updated deployment documentation, refer correctly to uWSGI where Gunicorn had been referenced. | `Issue #6121 `_ - Fixed an issue where the database list in the new connection window is not visible. +| `Issue #6140 `_ - Ensure that verbose logs should be visible for Utility(Backup, Maintenance) jobs. diff --git a/web/pgadmin/misc/bgprocess/processes.py b/web/pgadmin/misc/bgprocess/processes.py index ed359c7c3..2c209b76a 100644 --- a/web/pgadmin/misc/bgprocess/processes.py +++ b/web/pgadmin/misc/bgprocess/processes.py @@ -426,7 +426,7 @@ class BatchProcess(object): def status(self, out=0, err=0): import re - ctime = get_current_time(format='%Y%m%d%H%M%S%f') + ctime = get_current_time(format='%y%m%d%H%M%S%f') stdout = [] stderr = []