Structured logging?
#12217
Replies: 1 comment 2 replies
|
Hey @btkostner, following up on #12218, let's take over this discussion for the structured logging that I'm introducing here: #12405 I know I said I would do a Discussion/RFC but...well, I think I coalesced many different pieces of feedback that I've had over time into one idea and it was too easy to have the code once I had the spec. 😄 Structured logging is available in v2.8.21-canary.2. TL;DR: Docs links:
Please let me know how this treats you! |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Goals
--summarizeflag log output for parsing down the line in CINon-goals
Background
We are currently using the
--summarizeflag on our monorepo CI. This is so tasks ran get a file of there output that can later be parsed and used for PR comments. This is much easier than trying to split out the stdout based on package. However, since not all of our tasks are cached, not all output a log file.Proposal
The
.turbo/turbo-*.logfiles should always be generated when running tasks with--summarizeAll reactions