mirror of
https://github.com/Steffo99/unimore-bda-6.git
synced 2024-11-21 23:44:19 +00:00
Improve logging
This commit is contained in:
parent
965cea692a
commit
767a6087a8
1 changed files with 3 additions and 3 deletions
|
@ -30,15 +30,15 @@ def mongo_client_from_config() -> t.ContextManager[pymongo.MongoClient]:
|
|||
Create a new MongoDB client and yield it.
|
||||
"""
|
||||
log.debug("Opening connection to MongoDB...")
|
||||
client = pymongo.MongoClient(
|
||||
client: pymongo.MongoClient = pymongo.MongoClient(
|
||||
host=MONGO_HOST.__wrapped__,
|
||||
port=MONGO_PORT.__wrapped__,
|
||||
)
|
||||
log.info("Opened connection to MongoDB: %s", client)
|
||||
log.info("Opened connection to MongoDB at %s!", client.address)
|
||||
|
||||
yield client
|
||||
|
||||
log.info("Closing connection to MongoDB: %s", client)
|
||||
log.info("Closing connection to MongoDB...")
|
||||
client.close()
|
||||
log.debug("Closed connection to MongoDB!")
|
||||
|
||||
|
|
Loading…
Reference in a new issue