• @[email protected]
    link
    fedilink
    801 year ago

    Because I have nested loops and only want to see certain cases and I’m not smart enough to set up conditional breakpoints or value watching

    • @HairHeel
      link
      English
      331 year ago

      Value watching is just printf; change my mind

      • @[email protected]
        link
        fedilink
        71 year ago

        Ackchyually, value watching in debugger almost guarantee to get the value by address, but printf in some languages can pass by value, unnecessarily make copy of the watched variable, and the value printed is the copied data instead of the original

    • macniel
      link
      fedilink
      101 year ago

      Programming is also about learning your tools :)

    • idunnololz
      link
      fedilink
      81 year ago

      Someone should make that bell curve meme with people using print statements at the newb and advanced level. Debuggers are great but I’d say it’s a 50/50 split for me for debugger vs logger when I’m debugging something.