-
Notifications
You must be signed in to change notification settings - Fork 233
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
FR: Disable node counts in the logs/terminal #4286
Comments
My opinion is that showing the list in console is not best place to let users know about nodes with dependencies. There is proposal to show them in the menu as inactive items - #3410. Also it's possible to show the list according to some log level but as to me log levels serve another function. |
ok. i'm also getting pretty tired of seeing some of that stuff at startup/refresh. So i'll limit the startup prints to this: sv: import settings
sv: PyMCubes package is not available. PyMCubes-based implementation of Marching Cubes will not be available
sv: Circlify package is not available. Circlify node will not be available
sv: FreeCAD package is not available, Solids nodes will not be available
sv: Dependencies available: pip, scipy, geomdl, scikit-image, Cython, Numba.
sv: import all modules
sv: enable internal debug logging.
2021-08-26 15:29:47,887 [INFO] logging: log level, 20
______ _ _ _______ ______ _______ _ _ _____ _ _
/______ \ / |______ |_____/ | |_____| | | |____/
______/ \/ |______ | \_ |_____ | | |_____| | \_
initialized.
sv: version: 1.0.0, branch suppress_some_startup_printing, commit 1481e0f2 if we want to see the log of not-enabled nodes, and node count, we can do: >>> import sverchok
>>> sverchok.menu.log_details() terminal will then display the |
beyond this, hopefully you can track down those errors with less effort now. It's a bad sign if add-ons have errors during scripts-refresh. |
Hi
It would be nice if there is a way to disable the logs of the loaded nodes, the reason is that it pollutes the terminal and makes harder to see the errors from the other add-ons. For some reason Sverchok's node listing done as the last step during start up or reloading add-ons. It makes it easy to miss the errors of other add-ons.
I tried disabling logging, but that does not help.
Thanks
The text was updated successfully, but these errors were encountered: