diff --git a/LCS/PyCommon/dbcredentials.py b/LCS/PyCommon/dbcredentials.py index 2a449d999017d2dcc4f6a1b085f7ecbf7ec612e9..f1bfa63e3d54e675c38f6f88d73442065c47ab5f 100644 --- a/LCS/PyCommon/dbcredentials.py +++ b/LCS/PyCommon/dbcredentials.py @@ -68,6 +68,9 @@ class Credentials: def __str__(self): return "type={type} addr={host}:{port} auth={user}:{password} db={database}".format(**self.__dict__) + def stringWithHiddenPassword(self): + return "type={type} addr={host}:{port} auth={user}:XXXXXX db={database}".format(**self.__dict__) + def pg_connect_options(self): """ Returns a dict of options to provide to PyGreSQL's pg.connect function. Use: diff --git a/SAS/MoM/MoMQueryService/momqueryservice.py b/SAS/MoM/MoMQueryService/momqueryservice.py index a5d73a4cd8cb9c53757bbe5211530b3c9d0e06f3..ca34a124c0e4b89ebca4e2b094130b28389c3fa0 100755 --- a/SAS/MoM/MoMQueryService/momqueryservice.py +++ b/SAS/MoM/MoMQueryService/momqueryservice.py @@ -65,7 +65,9 @@ class MoMDatabaseWrapper: connect_options = self.dbcreds.mysql_connect_options() connect_options['connection_timeout'] = 5 try: + logger.info("Connecting to %s" % self.dbcreds.stringWithHiddenPassword()) self.conn = connector.connect(**connect_options) + logger.info("Connected to %s" % self.dbcreds.stringWithHiddenPassword()) except Exception as e: logger.error(str(e)) self.conn = None