• brvslvrnst@lemmy.ml
      link
      fedilink
      arrow-up
      9
      ·
      2 months ago

      See, both report and record signify different things in my mind. The original code was just printing to stdout.

      In my mind logMissingData makes more sense because it’s not actively sending anything; it’s just logging.

      • DrDeadCrash@programming.dev
        link
        fedilink
        arrow-up
        4
        ·
        2 months ago

        I agree that report and record are different. To me record means it’s preserved in some managed way.

        The implementation has the ability to vary quite widely from simply printing to stdout, logging to a file, writing to a queue / database, and yet the same name will continue to reflect all those possibilities

        This makes it sound like the intent goes beyond logging, but not so far as recording. That’s how I come to ‘report’ as the correct verb.

    • Oliver Lowe@apubtest2.srcbeat.com
      link
      fedilink
      arrow-up
      4
      ·
      2 months ago

      I would use reportMissingData

      Agreed, report feels clearer as the verb “record” is more about permanent storage and later reference.

      Or even just reportMissing? Depending on what’s happening around call sites, I often find I can drop generic stuff like “Data” and it’s just as clear, especially when looking at a function signature. For instance:

      func reportMissing(data) { ... }