mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-24 08:51:37 +00:00
Removed unnecessary log messages and changed some to debug (#167)
This commit is contained in:
parent
896c2fe6ec
commit
42258c699a
9 changed files with 65 additions and 67 deletions
|
@ -95,17 +95,16 @@ def get_device_id(reset=False):
|
|||
client_id = file_guid.read()
|
||||
|
||||
if not client_id or reset:
|
||||
LOG.info("Generating a new GUID.")
|
||||
LOG.debug("Generating a new GUID.")
|
||||
|
||||
client_id = str(create_id())
|
||||
file_guid = xbmcvfs.File(jellyfin_guid, 'w')
|
||||
file_guid.write(client_id)
|
||||
|
||||
file_guid.close()
|
||||
|
||||
LOG.info("DeviceId loaded: %s", client_id)
|
||||
LOG.debug("DeviceId loaded: %s", client_id)
|
||||
window('jellyfin_deviceId', value=client_id)
|
||||
|
||||
|
||||
return client_id
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue