Nate Finch
Nate Finch
Thanks for pinging me on this, @faiq ... I'll have to re-review the code and work on the merge conflicts, but it seems like it should be able to be...
I'll spend some time on it this weekend, see if I can knock it out. I know it would be very useful.
I was running gocritic via golangci-lint, so I am not sure how to do it via gocritic itself, but I just had `sloppyTestFuncName` configured to be disabled. Ironically, I realize...
I _think_ if you make the magefiles directory into its own go module (by running `go mod init github.com/vugu/vugu/magefiles` in that directory) then its dependencies won't creep into the main...
Yes please! I very often write out my script and then realize I have to dump it in a function for "no reason" because it has branching logic at the...
As Xiegeo mentioned, it's a garbage collected language, which means memory usage of the application can't be directly correlated to specific lines of code, because the runtime caches stuff any...
100% ... I'll tag it appropriately.... I'm sad it's already in v2, which makes modules a lot more of a headache.
So here's the thing... the whole point of rolling a log file is to avoid filling up your disk. Rolling on a time interval doesn't do that. You could have...
I think we should roll this (heh) into a v3 version of lumberjack. See here: https://github.com/natefinch/lumberjack/issues/115
Yes, I've come around on it, mostly because there is a use case that I hadn't considered before. You may not want to keep logs beyond a certain date, as...