• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    VSCode Golang dlv调试数据截断问题及处理方法

    使用VSCode对Golang程序进行调试时会遇到数据截断问题,string只显示前64个字符,array只显示前64个数据。经查dlv是支持以参数方式来控制的。

    发现VSCode的Golang插件里面有个叫做go.delveConfig的配置,是可以设置dlv参数的。分享一下我的整个Golang配置:

    "go.buildOnSave": "off",
      "go.formatTool": "goimports",
      "go.lintTool": "golangci-lint", //go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
      "go.autocompleteUnimportedPackages": true,
      "go.gotoSymbol.includeImports": true,
      "go.useLanguageServer": true,
      "go.delveConfig": {
        "dlvLoadConfig": {
          "followPointers": true,
          "maxVariableRecurse": 3,
          "maxStringLen": 1024,
          "maxArrayValues": 1024,
          "maxStructFields": -1
        },
      },
      "[go]": {
        "editor.formatOnSave": true,
        "editor.codeActionsOnSave": {
          "source.organizeImports": true
        }
      },

    需要改的主要是maxStringLenmaxArrayValuesmaxVariableRecurse这三个字段。

    参考:https://stackoverflow.com/questions/52416263/how-do-i-print-the-full-value-of-a-string-variable-in-delve

    ps:下面看下Golang dlv 工具debug 调试注意项

    总结一下关于Go 的调试工具dlv:https://github.com/derekparker/delve 的使用注意项。

    安装:

    go get -u github.com/go-delve/delve/cmd/dlv

    配置:

    以Centos为例

    export GOROOT=/usr/lib/golang
    export GOPATH=$HOME/go
    export PATH=$PATH:$GOPATH/bin

    使用

    以某go服务为例:

    dlv debug /home/xxx/server.go
    (dlv) b /home/xxx/server.go:258
    (dlv) r 1
    (dlv) n
    (dlv) c

    注意: b filename>:line> 指定断点时,若该行号对应的代码内容为无具体语义的代码(括号、注释等),则会报错:

    Command failed: could not find /home/xxx/server.go:258

    此时可用list 命令先查看上下文代码,避免将无具体语义的代码设为断点。

    命令集

    The following commands are available:
        args ------------------------ Print function arguments.
        break (alias: b) ------------ Sets a breakpoint.
        breakpoints (alias: bp) ----- Print out info for active breakpoints.
        call ------------------------ Resumes process, injecting a function call (EXPERIMENTAL!!!)
        clear ----------------------- Deletes breakpoint.
        clearall -------------------- Deletes multiple breakpoints.
        condition (alias: cond) ----- Set breakpoint condition.
        config ---------------------- Changes configuration parameters.
        continue (alias: c) --------- Run until breakpoint or program termination.
        deferred -------------------- Executes command in the context of a deferred call.
        disassemble (alias: disass) - Disassembler.
        down ------------------------ Move the current frame down.
        edit (alias: ed) ------------ Open where you are in $DELVE_EDITOR or $EDITOR
        exit (alias: quit | q) ------ Exit the debugger.
        frame ----------------------- Set the current frame, or execute command on a different frame.
        funcs ----------------------- Print list of functions.
        goroutine ------------------- Shows or changes current goroutine
        goroutines ------------------ List program goroutines.
        help (alias: h) ------------- Prints the help message.
        list (alias: ls | l) -------- Show source code.
        locals ---------------------- Print local variables.
        next (alias: n) ------------- Step over to next source line.
        on -------------------------- Executes a command when a breakpoint is hit.
        print (alias: p) ------------ Evaluate an expression.
        regs ------------------------ Print contents of CPU registers.
        restart (alias: r) ---------- Restart process.
        set ------------------------- Changes the value of a variable.
        source ---------------------- Executes a file containing a list of delve commands
        sources --------------------- Print list of source files.
        stack (alias: bt) ----------- Print stack trace.
        step (alias: s) ------------- Single step through program.
        step-instruction (alias: si)  Single step a single cpu instruction.
        stepout --------------------- Step out of the current function.
        thread (alias: tr) ---------- Switch to the specified thread.
        threads --------------------- Print out info for every traced thread.
        trace (alias: t) ------------ Set tracepoint.
        types ----------------------- Print list of types
        up -------------------------- Move the current frame up.
        vars ------------------------ Print package variables.
        whatis ---------------------- Prints type of an expression.

    总结

    到此这篇关于VSCode Golang dlv调试数据截断问题及处理方法的文章就介绍到这了,更多相关VSCode Golang dlv调试数据截断内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • VSCode1.4 搭建Golang的开发调试环境(遇到很多问题)
    • 解决vscode中golang插件依赖安装失败问题
    • 手把手教你vscode配置golang开发环境的步骤
    上一篇:从go语言中找&和*区别详解
    下一篇:Golang 限流器的使用和实现示例
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    VSCode Golang dlv调试数据截断问题及处理方法 VSCode,Golang,dlv,调试,数据,