mirror of
https://github.com/dani-garcia/vaultwarden.git
synced 2026-02-27 19:07:53 +03:00
What does this mean in my logs? #264
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @BobWs on GitHub (Mar 25, 2019).
What does this mean? I'm seeing it a lot in my logs:
@BlackDex commented on GitHub (Mar 25, 2019):
Seems you are running a "debug" version instead of the "release" version.
It's just normal output.
@BobWs commented on GitHub (Mar 25, 2019):
That is strange I'm using the latest image "mprasil/bitwarden:latest"
@dani-garcia commented on GitHub (Mar 25, 2019):
That's from the reqwest library that we use for icon downloading which uses the tokio crate, we currently hardcode the log level to debug globally (except a couple of dependencies which are set to a higher value), so this is what we get. It should happen regardless of what version you are using.
We don't really use the debug log level ourselves, so I've changed it to Info by default, which makes more sense and would hide that kind of message (which isn't very useful for us anyway). I also implemented a log_level config option. This should be available in the latest commit now, and in the built images soon.
@BobWs commented on GitHub (Mar 25, 2019):
okay thanks for explaining
@mprasil commented on GitHub (Mar 25, 2019):
Images are now being built, give it about an hour to complete. I think we can close this one now? Feel free to reopen if there's anything more we can help with.