mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 15:00:34 +01:00
14 lines
249 B
Python
14 lines
249 B
Python
|
#!/usr/bin/env python3
|
||
|
from pyln.client import Plugin
|
||
|
|
||
|
plugin = Plugin()
|
||
|
|
||
|
|
||
|
@plugin.init()
|
||
|
def init(options, configuration, plugin):
|
||
|
plugin.log("printing debug log", level='debug')
|
||
|
plugin.log("printing info log", level='info')
|
||
|
|
||
|
|
||
|
plugin.run()
|