-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
[core] spdlog newliner sink #50333
[core] spdlog newliner sink #50333
Conversation
c322959
to
918d520
Compare
Signed-off-by: dentiny <[email protected]>
918d520
to
d123679
Compare
return; | ||
} | ||
std::vector<std::string_view> segments = absl::StrSplit(new_content, '\n'); | ||
for (int idx = 0; idx < static_cast<int>(segments.size()) - 1; ++idx) { |
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.
int -> size_t ?
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's safer to use int, because segment
could be empty, then possible to suffer underflow.
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.
I don't think it can be empty in our case but ok.
std::vector<std::string_view> segments = absl::StrSplit(new_content, '\n'); | ||
for (int idx = 0; idx < static_cast<int>(segments.size()) - 1; ++idx) { | ||
std::string cur_message = std::move(buffer_); | ||
buffer_.clear(); |
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.
is it safe to call clear on a moved string and use it later? Should we do buffer_ = ""
instead?
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.
is it safe to call clear on a moved string and use it later?
What do you mean? I didn't access its value. clear
is a well-defined function.
Signed-off-by: dentiny <[email protected]>
return; | ||
} | ||
std::vector<std::string_view> segments = absl::StrSplit(new_content, '\n'); | ||
for (int idx = 0; idx < static_cast<int>(segments.size()) - 1; ++idx) { |
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.
I don't think it can be empty in our case but ok.
Signed-off-by: dentiny <[email protected]>
Signed-off-by: dentiny <[email protected]>
Signed-off-by: dentiny <[email protected]>
Implement a new sink, which logs and flushes on newliner basis.
I plan to use it as a wrapper for rotation file sink around rotation file sink.