[go-nuts] Re: slog formatter funcs? (e.g. slog.Infof)

2023-12-17 Thread Jonathan Amsterdam
I personally am a fan of formatted logs, but we didn't see a way to combine them with key-value pairs (you only get one variadic arg per function call). It wouldn't be hard to write a layer that wraps a slog.Logger or slog.Handler with xxxf functions. That's what I recommend. On Friday, December

[go-nuts] Re: Windows Go programs not running under Wine anymore.

2023-12-17 Thread Juliusz Chroboczek
> Apparently wine 9.0 rc2 includes bcryptprimitives.dll now (I tested on it > and it did work). Thanks for the hint, it apparently works with 8.19 (wine-development in Debian). -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from

Re: [go-nuts] Re: Windows Go programs not running under Wine anymore.

2023-12-17 Thread Bruno Albuquerque
Apparently wine 9.0 rc2 includes bcryptprimitives.dll now (I tested on it and it did work). So I guess it sorted itself. -Bruno On Sun, Dec 17, 2023 at 2:31 PM Juliusz Chroboczek wrote: > > Apparently the change below broke Windows apps when running under Wine as > > it made bcryptprimitives.d

[go-nuts] Re: Windows Go programs not running under Wine anymore.

2023-12-17 Thread Juliusz Chroboczek
> Apparently the change below broke Windows apps when running under Wine as > it made bcryptprimitives.dll a hard requirement now and this dll is not > bundled with Wine. This is true even for programs that do not use it all > (like a simple "hello world" program). > > https://github.com/golang/go/