From 0fe29a879eeb17950adf4fa2c9d625cc3a1d9c3e Mon Sep 17 00:00:00 2001 From: Suhas Thalanki <54014218+thesuhas@users.noreply.github.com> Date: Mon, 6 Oct 2025 10:38:00 -0400 Subject: [PATCH] add log statements --- src/backend/libpq/auth.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c index 9cfc28aaed5..2ae0bf86723 100644 --- a/src/backend/libpq/auth.c +++ b/src/backend/libpq/auth.c @@ -801,10 +801,11 @@ CheckPasswordAuth(Port *port, const char **logdetail) return STATUS_EOF; /* client wouldn't send password */ /* BEGIN HADRON */ - elog(DEBUG1, "Databricks: before authentication hook"); + elog(LOG, "Databricks: before authentication hook %p", DatabricksAuthentication_hook); if (DatabricksAuthentication_hook) { + elog(LOG, "Databricks hook is being registered"); result = (*DatabricksAuthentication_hook) (port, passwd, &skip_password_auth, logdetail); } else