From 809ce938ac9c4dff63c719c3f0ac14c14c6051d6 Mon Sep 17 00:00:00 2001 From: Alex Steel <130377221+asteel-gsa@users.noreply.github.com> Date: Thu, 15 Aug 2024 15:04:53 -0400 Subject: [PATCH] Add keywords for newrelic --- cmd/check_db.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/check_db.go b/cmd/check_db.go index 9107092..ae49fb9 100644 --- a/cmd/check_db.go +++ b/cmd/check_db.go @@ -65,13 +65,13 @@ func check_if_table_exists(source_creds vcap.Credentials) { } } if len(not_existing) > 0 { - logging.Error.Println("A list of tables that does not exist in the database, but does exist in a manifest has been returned.") + logging.Error.Println("CHECKTABLESFAIL : A list of tables that does not exist in the database, but does exist in a manifest has been returned.") logging.Error.Println("System exiting...") joined_tables := strings.Join(not_existing[:], " ") logging.Error.Printf("DBMISSINGTABLES " + joined_tables) os.Exit(logging.DB_MISSING_TABLES) } else { - logging.Status.Printf("Manifest and Database tables appear to be in sync for database: " + source_database) + logging.Status.Printf("CHECKTABLESPASS : Manifest and Database tables appear to be in sync for database: " + source_database) } if err := scanner.Err(); err != nil {