mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-24 08:51:37 +00:00
Detect coreelect, etc
This commit is contained in:
parent
b873f516b3
commit
05483c7406
3 changed files with 10 additions and 4 deletions
|
@ -55,16 +55,17 @@ class Service(xbmc.Monitor):
|
|||
self.settings['kodi_companion'] = settings('kodiCompanion.bool')
|
||||
window('emby_logLevel', value=str(self.settings['log_level']))
|
||||
window('emby_kodiProfile', value=self.settings['profile'])
|
||||
settings('platformDetected', client.get_platform())
|
||||
|
||||
if self.settings['enable_context']:
|
||||
window('emby_context', value="true")
|
||||
window('emby_context.bool', True)
|
||||
if self.settings['enable_context_transcode']:
|
||||
window('emby_context_transcode', value="true")
|
||||
window('emby_context_transcode.bool', True)
|
||||
|
||||
LOG.warn("--->>>[ %s ]", client.get_addon_name())
|
||||
LOG.warn("Version: %s", client.get_version())
|
||||
LOG.warn("KODI Version: %s", xbmc.getInfoLabel('System.BuildVersion'))
|
||||
LOG.warn("Platform: %s", client.get_platform())
|
||||
LOG.warn("Platform: %s", settings('platformDetected'))
|
||||
LOG.warn("Python Version: %s", sys.version)
|
||||
LOG.warn("Using dynamic paths: %s", settings('useDirectPaths') == "0")
|
||||
LOG.warn("Log Level: %s", self.settings['log_level'])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue