Skip to content
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

Bad performance when logging in output panel #26159

Closed
yzhang-gh opened this issue May 7, 2017 · 2 comments
Closed

Bad performance when logging in output panel #26159

yzhang-gh opened this issue May 7, 2017 · 2 comments
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug output Output channel system issues
Milestone

Comments

@yzhang-gh
Copy link
Contributor

  • VSCode Version: Code - Insiders 1.13.0-insider (688b96f, 2017-05-05T15:34:02.954Z)
  • OS Version: Windows_NT ia32 10.0.16188

Steps to Reproduce:

  1. Create test.py and tasks.json as below
  2. Run the task
  3. The output text is shown a big number of lines a time (instead of line by line in terminal).
  4. And if you change range(100000) to range(1000000), vscode will freeze (become really really slow).

test.py:

for i in range(100000):
    print(i)

tasks.json:

{
    "version": "0.1.0",
    "command": "python",
    "isShellCommand": true,
    "args": ["test.py"],
    "showOutput": "always"
}
@isidorn
Copy link
Contributor

isidorn commented May 8, 2017

Known issue, more details can be found here #22804

@isidorn isidorn added the output Output channel system issues label May 8, 2017
@isidorn isidorn added this to the Backlog milestone May 8, 2017
@isidorn isidorn added the bug Issue identified by VS Code Team member as probable bug label May 8, 2017
@isidorn
Copy link
Contributor

isidorn commented Nov 13, 2017

Closing as will not fix (can not fix) due to to the most time being spent in sending json objects around.

@isidorn isidorn closed this as completed Nov 13, 2017
@vscodebot vscodebot bot locked and limited conversation to collaborators Dec 28, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug output Output channel system issues
Projects
None yet
Development

No branches or pull requests

2 participants