mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
13 lines
268 B
Python
13 lines
268 B
Python
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
import xbmc
|
|
import xbmcaddon
|
|
|
|
|
|
_MESSAGE = xbmcaddon.Addon().getAddonInfo('name') + ': {}'
|
|
|
|
|
|
def log(message):
|
|
xbmc.log(_MESSAGE.format(message), xbmc.LOGNOTICE)
|