Results 39 comments of Lord Alfred

You did not use Sentry? Try it, it's a great service where there is a free plan for developers. It is difficult to explain what is good in it, you...

I would like to test Sentry in my guerrilla (I don't have much data). But for several days there were no events, although I saw errors in the log like:...

I think that these errors could be due to the absence of `&charset=utf8mb4&collation=utf8mb4_unicode_ci` in the connection line to mysql. Yesterday I added them and there was not a single such...

https://github.com/flashmob/go-guerrilla/issues/163

+1 for me on Ubuntu 16.04 LTS. Need use listen interface 0.0.0.0, not 127.0.0.1 as it in default config. Solved my "Connection refused" in telnet ```bash $ sudo netstat -tulpn...

I think, [now](https://github.com/flashmob/go-guerrilla/pull/122) need to install `dep` instead of `glide`, right? ```bash cd $GOPATH/src/github.com/flashmob/go-guerrilla go get -u github.com/golang/dep/cmd/dep dep ensure ``` ?

Yes, that would be great! But judging by the code that is now there in PR, I don’t know how I can help. Is there any way to make this...

And I think that words like `time=`, `level=` and `msg=` are not needed on every line. Now it looks like this: > time="2019-08-06T23:21:56+03:00" level=debug msg="Client sent: QUIT" But it would...

> we add QueuedIDGenerator = defaultQueuedID I think, its wrong way. Need to hardcode faster hashing function and all. Nobody need to configure it, all members who use this package...

> Btw, would prefer to use a hasing function that doesn't introduce new external dependency And what is the problem of adding a new dependency? Anyway need to compile the...