-
Notifications
You must be signed in to change notification settings - Fork 101
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
Does musializer not have logging? #101
Comments
It refers to the command line logs. Launch musializer from the command line if you want to see them. |
But in windows it doesn't show any log |
I think I know why. The subsystem is switched to windows instead of console, which means stdio is detached. |
I didn't understand what you meant, so I looked around and wanted to leave some references. I suppose it's related to the usage of Link to example from msvc nob source From this page:
But this seems to be exactly the approach shown in set SUBSYSTEM_FLAGS=/SUBSYSTEM:WINDOWS /ENTRY:mainCRTStartup So I don't really know if trying other values is the way to go around this. Having no MSVC ready, I can't really test this now. |
The equivalent flag for By default windows subsystem gui applications don’t get a console which means they don’t have stdout, stdin and stderr. You manually allocate or attach a console, such as the parent cmd, by using the win32 api and get stdio back and achieve a hybrid console/gui app. |
This says to check logs but the whole project have no log files
The text was updated successfully, but these errors were encountered: