iilyak commented on pull request #3422:
URL: https://github.com/apache/couchdb/pull/3422#issuecomment-799343593
Please test how couch_log application work. I tried couch_log on OTP 22 and
it was not working correctly for the following test.
1. Define new clause in any of the named gen_server. For example
`couch_server`:
```
handle_info(die, State) ->
ok = nok,
{noreply, State};
```
2. Start CouchDB `dev/run --admin=adm:pass`
3. Start remsh session `dev/remsh`
4. Send die message `couch_server ! die`
5. Check logs. You should see a log message about couch_server crashing
(something matching the following pattern `"gen_server ~w terminated with
reason: ~s~n"`).
This is due to significant changes in OTP logging subsystem.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]