We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f70bb13 commit 902a294Copy full SHA for 902a294
bindings/ldk_node.udl
@@ -39,6 +39,18 @@ dictionary FilesystemLoggerConfig {
39
LogLevel? log_level;
40
};
41
42
+dictionary LogRecord {
43
+ LogLevel level;
44
+ string args;
45
+ string module_path;
46
+ u32 line;
47
+};
48
+
49
+[Trait]
50
+interface LogWriter {
51
+ void log(LogRecord record);
52
53
54
interface Builder {
55
constructor();
56
[Name=from_config]
@@ -571,18 +583,6 @@ dictionary NodeAnnouncementInfo {
571
583
sequence<SocketAddress> addresses;
572
584
573
585
574
-dictionary LogRecord {
575
- LogLevel level;
576
- string args;
577
- string module_path;
578
- u32 line;
579
-};
580
-
581
-[Trait]
582
-interface LogWriter {
- void log(LogRecord record);
586
[Custom]
587
typedef string Txid;
588
0 commit comments