-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use Log instead of Logs #46
Conversation
This gets logged a lot for me in opam-mirror. I'm not sure what it means or why it should be a warning... |
Are doing a lot of concurrent requests? The log message appears if we just resolved some IPv4 addresses, and add them to the set of addresses to connect to. But we have not yet received an answer from the task querying for AAAA records (IPv6 address records) for a given hostname. And we'll wait a bit longer since we prefer IPv6. We can demote to Log.info or Log.debug if that makes your life / output easier :) EDIT: updated the above after reading the code. |
Yes, I think it defaults to up to 20 concurrent downloads, and a lot of the archives are on the same few hosts (e.g. github) |
let's demote to debug, and include the hostname. |
- Demote to debug logging, - Print as well the host in question Co-authored-by: Hannes Mehnert <hannes@mehnert.org>
should we do a release? |
I think that would be nice |
CHANGES: * Demote log message for Waiting_for_AAAA and Resolve_a (@reynir, robur-coop/happy-eyeballs#46)
I noticed my application was logging happy-eyeballs warnings. This was slightly confusing to me.