-
Notifications
You must be signed in to change notification settings - Fork 262
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
fix: span names, log levels and messages #1213
fix: span names, log levels and messages #1213
Conversation
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.
Looks good
Missed a detail on colorize. We can probably remove tracing feature from codegen now because of the move. |
runtime/src/alpha/mod.rs
Outdated
@@ -64,6 +64,43 @@ pub async fn start(loader: impl Loader<ProvisionerFactory> + Send + 'static) { | |||
} | |||
}; | |||
|
|||
// this is handled after arg parsing to not interfere with --version above | |||
if cfg!(feature = "setup-tracing") { |
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.
Why this was moved to here from codegen?
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.
It is not needed in codegen, and it interfered with the arg parsing of runtime, which the comment states.
It might be readded because of |
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.
Looks good! Just left some questions.
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.
lgtm! Only the qs around the commenting of auth
trace which we'll discuss soon.
Co-authored-by: Oddbjørn Grødem <[email protected]>
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.
LGTM! resolved my comments
Description of change
How has this been tested? (if applicable)