mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-06-12 09:52:14 +02:00
cmd/lncli: add new getdebuginfo command
This commit is contained in:
parent
8a2c3a3d85
commit
375bc6950c
29
cmd/lncli/cmd_debug.go
Normal file
29
cmd/lncli/cmd_debug.go
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/lightningnetwork/lnd/lnrpc"
|
||||||
|
"github.com/urfave/cli"
|
||||||
|
)
|
||||||
|
|
||||||
|
var getDebugInfoCommand = cli.Command{
|
||||||
|
Name: "getdebuginfo",
|
||||||
|
Category: "Debug",
|
||||||
|
Usage: "Returns debug information related to the active daemon.",
|
||||||
|
Action: actionDecorator(getDebugInfo),
|
||||||
|
}
|
||||||
|
|
||||||
|
func getDebugInfo(ctx *cli.Context) error {
|
||||||
|
ctxc := getContext()
|
||||||
|
client, cleanUp := getClient(ctx)
|
||||||
|
defer cleanUp()
|
||||||
|
|
||||||
|
req := &lnrpc.GetDebugInfoRequest{}
|
||||||
|
resp, err := client.GetDebugInfo(ctxc, req)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
printRespJSON(resp)
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
@ -459,6 +459,7 @@ func main() {
|
|||||||
walletBalanceCommand,
|
walletBalanceCommand,
|
||||||
channelBalanceCommand,
|
channelBalanceCommand,
|
||||||
getInfoCommand,
|
getInfoCommand,
|
||||||
|
getDebugInfoCommand,
|
||||||
getRecoveryInfoCommand,
|
getRecoveryInfoCommand,
|
||||||
pendingChannelsCommand,
|
pendingChannelsCommand,
|
||||||
sendPaymentCommand,
|
sendPaymentCommand,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user