Skip to content

Commit

Permalink
fix: make log message more generic (and correct)
Browse files Browse the repository at this point in the history
It's the little things... ;)
  • Loading branch information
stdavis authored and jacobdadams committed Oct 8, 2024
1 parent 09a3c0b commit 85314da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/palletjack/extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def __init__(self, host, database, username, password, port=5432):

self._class_logger = logging.getLogger(__name__).getChild(self.__class__.__name__)
if utils.is_running_in_gcp():
self._class_logger.info("running in GCF, using unix socket")
self._class_logger.info("running in GCP, using unix socket")
self.engine = sqlalchemy.create_engine(
sqlalchemy.engine.url.URL.create(
drivername="postgresql+pg8000",
Expand Down

0 comments on commit 85314da

Please sign in to comment.