-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
[BUG] npm produces "timing" log output when "npm start" #4527
Comments
I noticed something similar and I observed that the timing information is only printed if there is some warning output happening before. In your case:
I think if you are using npm workspaces, you only need an |
@ansf you are totally right! That is indeed the cause of the timing info. |
Previously, `npmlog` was attempting to enable the progress bar even when logs were paused. This displayed the most recent log (most often an error) for the rest of the process. Fixes #4527
Previously, `npmlog` was attempting to enable the progress bar even when logs were paused. This displayed the most recent log (most often an error) for the rest of the process. Fixes #4527
Previously, `npmlog` was attempting to enable the progress bar even when logs were paused. This displayed the most recent log (most often an error) for the rest of the process. Fixes #4527
@webhype As far as I can see the underlying problem was solved with the 8.x version. In my case removing .npmrc files in all subdirectories stopped the output from appearing with the 7.x version of npm. |
What is the fix version for this bug? |
I have it on npm version 8.19.2. |
@synox this was fixed in |
Is there an existing issue for this?
This issue exists in the latest npm version
Current Behavior
' npm start ' produces the following timing output which sticks always to the last line:

the "normal" output from the started app is always scrolling above this last line.
Expected Behavior
no timing output.
Digging deeper I noticed that with
--loglevel
silent
orerror
there is no sticky output.BUT for
warn
,notice
andhttp
there istiming
output which in my opinion should not happen, since these levels are beforetiming
log level ....Steps To Reproduce
Environment
The text was updated successfully, but these errors were encountered: