github.com/palisadeinc/bor@v0.0.0-20230615125219-ab7196213d15/docs/cli/debug.md (about)

     1  # Debug
     2  
     3  The ```bor debug``` command takes a debug dump of the running client.
     4  
     5  - [```bor debug pprof```](./debug_pprof.md): Dumps bor pprof traces.
     6  
     7  - [```bor debug block <number>```](./debug_block.md): Dumps bor block traces.
     8  
     9  ## Examples
    10  
    11  By default it creates a tar.gz file with the output:
    12  
    13  ```
    14  $ bor debug
    15  Starting debugger...
    16  
    17  Created debug archive: bor-debug-2021-10-26-073819Z.tar.gz
    18  ```
    19  
    20  Send the output to a specific directory:
    21  
    22  ```
    23  $ bor debug --output data
    24  Starting debugger...
    25  
    26  Created debug directory: data/bor-debug-2021-10-26-075437Z
    27  ```