Almenon / birdseye-vscode

vscode port of birdseye - a graphical Python debugger
MIT License
23 stars 0 forks source link

show user output of birdseye when birdseye is loading #12

Closed Almenon closed 6 years ago

Almenon commented 6 years ago

When birdseye starts it outputs:

The "restarting with stat" command happens ~3 seconds into the start sequence. By showing the user the start sequence they would be able to see that birdseye is starting properly instead of worrying that it is hung up.

alexmojaki commented 6 years ago

I'll disable the auto-reloader, that'll reduce the time drastically. Then only the 'Running on...' message shows.

Almenon commented 6 years ago

What is the auto-reloader?

alexmojaki commented 6 years ago

It's a feature of Flask that automatically reloads the server when it detects a change in the code. It's great for development because I don't have to manually restart any time I change the code. But there's no point for users. It's just on because it's on by default when debug mode is on (which I want to stay on) and until now I haven't had a reason to turn it off.

alexmojaki commented 6 years ago

I disabled the auto-reloader in the recent release, so upgrade and test.

Almenon commented 6 years ago

yep its faster now. Not much reason to do this feature anymore.