-
Notifications
You must be signed in to change notification settings - Fork 196
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(console): use log files instead of in-memory logs #7043
feat(console): use log files instead of in-memory logs #7043
Conversation
Thanks for opening this pull request! 🎉
|
Console preview environment is available at https://wing-console-pr-7043.fly.dev 🚀 Last Updated (UTC) 2024-08-26 09:24 |
This is an integration commit for the virtual branches that GitButler is tracking. Due to GitButler managing multiple virtual branches, you cannot switch back and forth between git branches and virtual branches easily. If you switch to another branch, GitButler will need to be reinitialized. If you commit on this branch, GitButler will throw it away. Here are the branches that are currently applied: - Virtual branch (refs/gitbutler/Virtual-branch) branch head: 6ac8d2e - apps/wing-console/console/server/src/consoleLogger.ts - apps/wing-console/console/server/src/index.ts - apps/wing-console/console/app/demo/main.w - apps/wing-console/console/server/src/router/app.ts - 7024: Use log files instead of in-memory logs in the console (refs/gitbutler/7024-Use-log-files-instead-of-in-memory-logs-in-the-console) branch head: 14018ff Your previous branch was: 7acd85e817c721795fee803777607df4c99be885 The sha for that commit was: 7acd85e817c721795fee803777607df4c99be885 For more information about what we're doing here, check out our docs: https://docs.gitbutler.com/features/virtual-branches/integration-branch
Now I just need to make sure the react query's infinite query actually fetches the most recent data... |
1 similar comment
Now I just need to make sure the react query's infinite query actually fetches the most recent data... |
Congrats! 🚀 This was released in Wing 0.83.3. |
This changeset refactors the console so it uses a file to store the logs (previously, logs were stored in memory). The log retrieval mechanism still reads the whole file, but some code capable of streaming line-based files was added for future references.
Closes #7024.