-
Notifications
You must be signed in to change notification settings - Fork 2
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: stream log file in Settings dialog #348
Conversation
@@ -17,7 +17,7 @@ const handleCreateIssue = () => { | |||
} | |||
|
|||
const handleOpenLogs = () => { | |||
window.studio.app.openApplicationLog() | |||
window.studio.log.openLogFolder() |
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 moved handlers related to logs to its own namespace.
<Flex direction="column" pt="4" p="1" height="100%"> | ||
{children} |
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 made some changes to the parent elements in the tab content so we use flexbox more efficiently with children
items.
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 🚀
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.
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.
🚀
13b214b
Description
This PR removes the "Application log" button from the sidebar (decluttering the amount of items we currently have) and instead, shows the real-time log stream on a new tab in the Settings dialog.
How to Test
Checklist
npm run lint
) and all checks pass.npm test
) and all tests pass.Screenshots (if appropriate):
Related PR(s)/Issue(s)