You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A plugin that shows status messages from functions/methods might be a nice addition.
Specifically, I'm thinking something like vscode's Output:
This would mostly be useful for debugging, as well as troubleshooting in case users run into problems.
For this, the following things should be implemented:
A logging class that implements the basic info/error/warn/debug/etc. methods (either in vspreview directly or vstools (or maybe stgpytools?))
It should accept a namespace (including a function it can derive a name from, like our custom Exceptions currently do)
These messages should not be logged to standard stdout (maybe add an option to still do this so you don't have to write multiple log statements?)
(Optional) Prettify logging, just like we did for CustomExceptions
A vspreview plugin that catches and displays special log messages
It should keep observing new patterns, such that if there's for example debug statements in a frameeval, it can keep sending new logs every time a frame is loaded
I'm not sure how difficult this would be to implement, but it's something I can see being beneficial.
The text was updated successfully, but these errors were encountered:
A plugin that shows status messages from functions/methods might be a nice addition.
Specifically, I'm thinking something like vscode's Output:
This would mostly be useful for debugging, as well as troubleshooting in case users run into problems.
For this, the following things should be implemented:
I'm not sure how difficult this would be to implement, but it's something I can see being beneficial.
The text was updated successfully, but these errors were encountered: