You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README-DEV.md
+17
Original file line number
Diff line number
Diff line change
@@ -73,6 +73,23 @@ dclcli
73
73
```
74
74
Have a look at [How To](docs/how-to.md) and [CLI Help](docs/cli-help.md) for instructions how to configure and use the CLI.
75
75
76
+
## Remote Debugging local pool
77
+
If you want to remotely debug the node running in docker in order to inspect and step thru the code, modify the following lines in the `docker-compose.yml`. Comment out the default `dcld start` command with the `dlv` as shown below (delve is the go remote debugger)
78
+
```
79
+
# uncomment following line if starting in debug mode
80
+
- "2345:2345"
81
+
82
+
# command: dcld start
83
+
# Please use the following as the entry point if you want to start this node in debug mode for easy debugging
After making the changes re-initialize and start the localnet
87
+
- `make localnet_stop` -If your localnet is still up
88
+
- `make localnet_init`
89
+
- `make localnet_start`
90
+
91
+
Once all the four nodes are running, the last node i.e. node03 will be listing on port `2345` to which you can attach a debug process from any IDE (e.g. Visual Studio) and step thru the code. (p.s. node03 will only start working as validator node once the debugger is attached.). More details about IDE configuration can be found at https://github.com/go-delve/delve/blob/master/Documentation/EditorIntegration.md
92
+
76
93
## Contributing
77
94
Please take into account the following when sending a PR:
0 commit comments