From 02e8fd3fd3353e331e9d63f4d01b5a46e74149a2 Mon Sep 17 00:00:00 2001 From: kremin Date: Thu, 3 Oct 2024 15:56:17 -0700 Subject: [PATCH] add option to update_statuses to print updated table --- bin/desi_update_processing_table_statuses | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bin/desi_update_processing_table_statuses b/bin/desi_update_processing_table_statuses index 3b2d94f21..2bbe90a39 100755 --- a/bin/desi_update_processing_table_statuses +++ b/bin/desi_update_processing_table_statuses @@ -65,5 +65,8 @@ if __name__ == '__main__': cols = ['INTID', 'INT_DEP_IDS', 'EXPID', 'TILEID', 'OBSTYPE', 'JOBDESC', 'LATEST_QID', 'STATUS'] log.info(np.array(cols)) - + for row in ptable: + log.info(np.array(row[cols])) + log.info("\n") + log.info(f"Done updating STATUS column for processing table: {ptable_pathname}")