-
Notifications
You must be signed in to change notification settings - Fork 64
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
feat: Add version log #86
Conversation
Avoid recording time of build. It goes against reproducible build motto. |
152cb11
to
dcfcf88
Compare
af6473e
to
bcca7cd
Compare
bcca7cd
to
39cdec0
Compare
fc41bad
to
1cb321f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good! Just minor comments.
460982a
to
dabd72f
Compare
@@ -25,7 +25,7 @@ pub async fn start( | |||
config: DispatcherConfig, | |||
metrics: DispatcherMetrics, | |||
) -> Result<(), DispatcherError> { | |||
info!("Setting up dispatcher with config: {:?}", config); | |||
info!("Setting up dispatcher"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could remove this log since it doesn't add much else.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure. Could that be a "trace" instead of "info" then, as logs also acts as "execution markers" that helps spot bugs. What do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing it to trace is fine as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
0a699be
to
d30ef2a
Compare
close #8 |
d30ef2a
to
cd21dcd
Compare
9ec5208
to
c9f94e4
Compare
cffbcb3
to
706527c
Compare
Adding as a Draft to check if the way the "Versioning" Log appears now is the expected one