mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-15 09:25:04 +00:00
15 lines
263 B
Python
15 lines
263 B
Python
from ..base import *
|
|
|
|
@Js
|
|
def console():
|
|
pass
|
|
|
|
@Js
|
|
def log():
|
|
print(" ".join(repr(element) for element in arguments.to_list()))
|
|
|
|
console.put('log', log)
|
|
console.put('debug', log)
|
|
console.put('info', log)
|
|
console.put('warn', log)
|
|
console.put('error', log)
|