logging(smbdb): update log string to better specify which add_computer() is being called

main
Marshall Hallenbeck 2023-03-08 12:57:55 -05:00
parent beaab6034e
commit 3143b56060
1 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ class database:
# pull/545 # pull/545
def add_computer(self, ip, hostname, domain, os, smbv1, signing, spooler=None, zerologon=None, petitpotam=None, dc=None): def add_computer(self, ip, hostname, domain, os, smbv1, signing, spooler=None, zerologon=None, petitpotam=None, dc=None):
""" """
Check if this host has already been added to the database, if not add it in. Check if this host has already been added to the database, if not, add it in.
""" """
domain = domain.split('.')[0].upper() domain = domain.split('.')[0].upper()
hosts = [] hosts = []
@ -173,7 +173,7 @@ class database:
self.ComputersTable.c.ip == ip self.ComputersTable.c.ip == ip
) )
results = asyncio.run(self.conn.execute(q)).all() results = asyncio.run(self.conn.execute(q)).all()
logging.debug(f"add_computer() - computers returned: {results}") logging.debug(f"smb add_computer() - computers returned: {results}")
host_data = { host_data = {
"ip": ip, "ip": ip,