Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
Ask Question
i get the following error message when i start my vaadin-app
2022-07-16 14:46:19.276 INFO 14076 --- [onPool-worker-1] c.v.b.devserver.AbstractDevServerRunner : Started Webpack. Time: 17866ms
2022-07-16 14:46:19.426 INFO 14076 --- [v-server-output] c.v.b.devserver.DevServerOutputTracker : Issues checking in progress...
2022-07-16 14:46:20.173 INFO 14076 --- [v-server-output] c.v.b.devserver.DevServerOutputTracker : Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\DumpStack.log.tmp'
@Route("")
@JsModule("./register.js")
public class RegisterView extends VerticalLayout { ........ }
does anyone know what this is ?
best regards
–
–
–
here the answer this question :)
https://answers.microsoft.com/en-us/windows/forum/all/dumpstacklog-file/eba04d25-bac2-4173-b9d5-b1a8fc47f64e
DumpStack.log.tmp is a hidden file on Windows.
and with the following steps you could you unlock the file :
Open the Registry Editor.
Navigate to "HKEY_LOCAL_MACHINE", "SYSTEM", "CurrentControlSet",
"Control", and finally "CrashControl"
Once you've opened the "CrashControl" key, look at the values pane
to the right and look for "EnableLogFile". If it doesn't exist,
create it. Its type must be "DWORD".
Set its value to 0.
Exit the Registry Editor.
restart your computer
–
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.