-
-
Notifications
You must be signed in to change notification settings - Fork 58
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
Add option to disable call to clear
#58
Comments
I can sort this out easily, just opening this issue to see if there's interest. Hope you can see the positive side of this suggestion! |
Hey there, What is your current workaround, and how is this causing a problem? |
@lukeed Since I'm using sirv with concurrently it's annoying that the output of all my other processes gets hidden every time sirv restarts. I have to keep scrolling which is just annoying and unnecessary. I could pass the output of sirv through sed I guess, to filter out the control code. |
I forgot to mention last time: passing Since you're restarting a server, presumably you don't need to see the start-up banner again & again. And if you have a process watcher anyway, you're already getting start/stop signals in your process-manager's logs. My hesitation is that it feels very very silly to add a flag just to stop clearing; especially when this use case generally prefers hiding all other console noise too (aka, quiet). |
I guess that's better, I don't really need the access logs. It might be nice to have a |
Cool. I hear where you're coming from, but my recommendation for all production servers is to run with The documentation will start including this recommendation, too |
This problem is happening in development mode rather than production mode for me, where the server logs could possibly be useful, but I can live without them for now. |
I'm fine with using |
Starting with No other variants will work and it's purposefully unlisted. These are both intentional :) |
IMO this is a very surprising default, goes completely against expectation (I've never known anything else do this) what's the reason for it, just to clear those few 'header' lines? That's not worth it to me to also clearing everything else previously on screen, I find it very jarring. |
There are a number of things that do this, especially file servers. I much prefer this, in this case. And now it's easy to disable. |
Somewhat related: You can now hide only the logs (keeping the "application is running" text) via the |
I run
sirv
with other processes viaconcurrently
.When
sirv
callsclear
it scrolls the output of the other processes off the top of the screen.The text was updated successfully, but these errors were encountered: