Skip to content

Commit

Permalink
Fix meshdb client logger construction
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Dickinson committed Nov 22, 2024
1 parent 2d83f79 commit 31836b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesh-database-client/mesh_database_client/meshdb_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class MeshDBDatabaseClient(DatabaseClient):
def __init__(self, mesh_db_auth_token):
self.requests_sesssion = requests.Session()
self.requests_sesssion.headers['Authorization'] = f"Token {mesh_db_auth_token}"
self.logger = logging.Logger("MeshDBClient")
self.logger = logging.getLogger("MeshDBClient")

def _member_id_to_nn(self, member_id):
self.logger.info(f"Converting member ID: {member_id} to NN")
Expand Down

0 comments on commit 31836b5

Please sign in to comment.