50
Root
7y

I just changed a bunch of comments, log entries, and removed some blank lines from one of my controllers. Zero functional code changes. Everything worked before; now it runs only half the code, breaks, and throws strange errors.

Fucking hell.
Screw today.

Comments
  • 2
    I am gonna guess you accidentally commented/uncommended some of the code.
  • 2
    @nickpapoutsis
    I unnested an if (there were two checks that set flags; the inner had no reason to be nested), and it exposed a bug elsewhere in the code.

    Literally:
    If (not file x exists) {
    Set validation.x.missing
    If (not file y exists) {
    Set validation.y.missing
    }
    }
  • 4
    If it works don't fix it
  • 2
    I finally figured it out!
    It was a capital V instead of a lowercase v. (and with my editor font, the difference between the two is very small.)

    Details:

    It was this line right here:
    log.warning(Validation.message)

    Several weeks ago when I coded this, i likely used autocomplete on "vali", and it autocompleted to "Validation" -- from one of my comments. The actual object is lowercase, meaning this line passed `undefined` to my logger... which apparently the logger can't handle. That value silently broke all subsequent logging from that controller, and also stopped code execution while the logging helper was waiting for the dead ipc call to finish.

    yeesh. one freaking character!
  • 0
    May I speak to you about or lord and savior, TypeScript?
  • 1
    @hawkes Inherited project.
Add Comment