Skip to content

Commit 95ce260

Browse files
committed
show device identifier when logging that the device is in registration mode
1 parent 08a8142 commit 95ce260

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/calllogger/api/device.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
logger = logging.getLogger(__name__)
1616

1717

18-
def link_device(identifier) -> Union[str, None]:
18+
def link_device(identifier: str) -> Union[str, None]:
1919
"""Link device to a tenant on the server and return the provided token."""
20-
logger.info("Registering device with call monitoring server")
20+
logger.info("Registering device with call monitoring server: %s", identifier)
2121
api = QuartxAPIHandler()
2222
start = time.time()
2323
api.logger = logger

0 commit comments

Comments
 (0)