diff --git a/rpcserver.go b/rpcserver.go index 7fef87326..7c2c06674 100644 --- a/rpcserver.go +++ b/rpcserver.go @@ -7061,6 +7061,9 @@ func (r *rpcServer) DebugLevel(ctx context.Context, return nil, err } + // Propagate the new config level to the main config struct. + r.cfg.DebugLevel = req.LevelSpec + return &lnrpc.DebugLevelResponse{}, nil }