IceCream – Never use print() to debug again

(github.com)

35 points | by gregsadetsky 2 days ago ago

23 comments

  • oweiler 2 days ago ago

    Or use tests and/or a debugger. Which gives you all the listed benefits w/o an additional dependency.

    • ollysb 2 days ago ago

      Different tools for different cases. Debuggers are great for a snapshot in time but print statements are better for seeing the execution flow.

      • slifin a day ago ago

        As a profession we need to phase out point in time debuggers and replace them with reverse debuggers or "time travel" debuggers

        • ____mr____ a day ago ago

          I think PIT debuggers have their use especially with regards to altering state mid run, but this is the first time I've heard of reverse debugging and it seems incredibly useful, especially for multithreaded software I'm often debugging

    • pjmlp 2 days ago ago

      Yeah, the amount of wasted hours with 1960's teletype debugging.

      Ah but servers and embedded, that is why telemetry, execution traces, and debugger controlled action points exist.

  • RockRobotRock 2 days ago ago

    >Do you ever use print() or log() to debug your code?

    I haven't written my own code in months at this point...kind of depressing to think about

    • Leftium an hour ago ago

      My own TS project was inspired by IceCream: https://github.com/Leftium/gg#coding-agent-access

      It began as a better `console.log()` for humans, but I ended up making it better for AI coding agents.

      I got tired of copying dev console output, so coding agents can now just insert the exact calls they need and query the output without human intervention.

    • _345 a day ago ago

      i got half way through the readme for this project and had the same thought and got sad and just left the page

    • benj111 2 days ago ago

      So what do you actually do then?

    • squirrellous 2 days ago ago

      My first thought as well. Debugging is actually a decent use case of AI.

      • vitally3643 2 days ago ago

        I have a board with a logic analyzer, debug/flash probe, PSU, and multimeter on my desk being driven and debugged all autonomously by the AI.

        While the automation and systems side of my brain is thrilled that all of this id automated and integrated, developer brain is sad

  • awoimbee 2 days ago ago

    Debugging in python is already so easy with `print(f"{myvar=}")` and `breakpoint()`...

    • Hackbraten 2 days ago ago

      This is the correct answer. `ic(foo(123))` can be written as `print(f'{foo(123)=}')` without depending on yet another third-party library which is not pulling its weight.

  • smackeyacky 2 days ago ago

    I haven’t used print for debugging for ages. Now it’s all trace on azure and hope your bug ends up in the sampled data in whatever that stupid thing is called. App insights or some rubbish. Apparently a good old log file just isn’t good enough it has to be larded up with a query language. Grep was fine guys.

  • rurban 2 days ago ago

    Cannot recommend icecream, way too slow. But the use case of logging shines with realtime systems, or concurrent apps. You won't be able to efficiently debug them without logging. I live in my debugger, but logging is mandatory for the big picture.

    • grun a day ago ago

      hey! icecream author here. what/how/where is icecream too slow for your use case(s)? feedback is how good products become great

  • trvv 2 days ago ago

    It's neat how trivial it is to do this in C, only takes a couple of macros. https://github.com/trvv/_/blob/d4899741c4f35833b8e86d16e2163...

    Looks like the project has a linked repo that appears to do a similar thing for C but it doesn't generically format the arguments.

  • hankbond a day ago ago

    Yeah this is a miss for me. I've never felt that this was a considerable source of friction. Certainly not enough to justify a dependency.

  • grun a day ago ago

    hey! icecream author here. let me know your thoughts on what could make icecream more useful to you. feedback is how good products become great

  • Borborygymus 2 days ago ago

    Remember COBOL's EXHIBIT?

  • soizi 2 days ago ago

    why another tool for that ? think standard with other team/company and use the same integrated ones.

  • IshKebab 2 days ago ago

    ...use slightly fancier print() instead!

  • imagent 2 days ago ago

    [dead]