mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-23 15:00:34 +01:00
13 lines
249 B
Python
Executable file
13 lines
249 B
Python
Executable file
#!/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()
|